mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-09-02 21:22:34 +00:00
30 lines
484 B
SCSS
30 lines
484 B
SCSS
.sheet-quick-notes {
|
|
position: relative;
|
|
width: 266px;
|
|
|
|
&__content {
|
|
position: relative;
|
|
padding: 8px 0;
|
|
margin-bottom: 16px;
|
|
|
|
span {
|
|
display: block;
|
|
visibility: hidden;
|
|
font-size: $fs-s;
|
|
line-height: 16px;
|
|
padding: 0 8px;
|
|
white-space: pre-wrap;
|
|
min-height: 64px;
|
|
}
|
|
|
|
textarea {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
@include note-grid;
|
|
}
|
|
}
|
|
}
|