mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Set up DhLevelTier datamodel * Added Levelup data model and started at the render * Fixed data handling in the LevelUp view * Added back the save function * Finalised levelup selections and propagating to PC * Added level advancement selection data * Added DomainCard selection * Css merge commit * Added PC level/delevel benefits of leveling up * Fixed sticky previous selections on continous leveling * Fixed up Summary. Fixed multiclass/subclass blocking on selection * Removed unused level.hbs * Fixed attribute base for PC * Improved naming of attribute properties * Renamed/structured resources/evasion/proficiency * Improved trait marking * Rework to level up once at a time * Added markers * Removed tabs when in Summary * Fixed multilevel buttons * Improved multiclass/subclass recognition * Fixed tagify error on selection * Review fixes
46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
@import '../utils/colors.less';
|
|
@import '../utils/fonts.less';
|
|
|
|
.sheet.daggerheart.dh-style {
|
|
.tab.actions {
|
|
.actions-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 100%;
|
|
gap: 5px;
|
|
|
|
.action-item {
|
|
display: grid;
|
|
align-items: center;
|
|
grid-template-columns: 1fr 4fr 1fr;
|
|
cursor: pointer;
|
|
|
|
h4 {
|
|
font-family: @font-body;
|
|
font-weight: lighter;
|
|
color: @beige;
|
|
}
|
|
|
|
.image {
|
|
height: 40px;
|
|
width: 40px;
|
|
object-fit: cover;
|
|
border-radius: 6px;
|
|
border: none;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 10px;
|
|
a {
|
|
text-shadow: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|