mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
51 lines
1.2 KiB
Text
51 lines
1.2 KiB
Text
@import '../../utils/colors.less';
|
|
@import '../../utils/fonts.less';
|
|
|
|
.application.daggerheart.dh-style.dialog {
|
|
.tab.experiences {
|
|
.add-experience-btn {
|
|
width: 100%;
|
|
height: 38px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.experience-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.experience-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
|
|
.experience-inner-item {
|
|
display: grid;
|
|
grid-template-columns: 3fr 1fr 30px;
|
|
align-items: center;
|
|
gap: 5px;
|
|
|
|
span {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
a {
|
|
text-align: center;
|
|
|
|
&.disabled {
|
|
i {
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
resize: none;
|
|
}
|
|
}
|
|
}
|
|
}
|