mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
35 lines
650 B
Text
35 lines
650 B
Text
.application.daggerheart.dh-style.action-config {
|
|
.trigger-data {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
|
|
select {
|
|
flex: 1;
|
|
}
|
|
|
|
.hint-section {
|
|
flex: 3;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
|
|
.hint {
|
|
flex: 1;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|
|
}
|
|
|
|
.code-mirror-wrapper {
|
|
width: 100%;
|
|
height: 0;
|
|
min-height: 0;
|
|
transition: height 0.1s ease-in-out;
|
|
|
|
&.revealed {
|
|
height: 300px;
|
|
}
|
|
}
|
|
}
|