chore: Consistent CSS variable names and general housekeeping of styles (#2947)
parent
9c0f832a41
commit
9dd2257932
@ -1,51 +1,53 @@
|
|||||||
@import "../css/variables.module";
|
@import "../css/variables.module";
|
||||||
|
|
||||||
.Stats {
|
.excalidraw {
|
||||||
position: absolute;
|
.Stats {
|
||||||
top: 64px;
|
position: absolute;
|
||||||
right: 12px;
|
top: 64px;
|
||||||
font-size: 12px;
|
right: 12px;
|
||||||
z-index: 999;
|
font-size: 12px;
|
||||||
|
z-index: 999;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
margin: 0 24px 8px 0;
|
margin: 0 24px 8px 0;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
|
||||||
|
|
||||||
.close {
|
|
||||||
float: right;
|
|
||||||
height: 16px;
|
|
||||||
width: 16px;
|
|
||||||
cursor: pointer;
|
|
||||||
svg {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
.close {
|
||||||
width: 100%;
|
float: right;
|
||||||
th {
|
height: 16px;
|
||||||
border-bottom: 1px solid var(--input-border-color);
|
width: 16px;
|
||||||
padding: 4px;
|
cursor: pointer;
|
||||||
|
svg {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
tr {
|
|
||||||
td:nth-child(2) {
|
table {
|
||||||
min-width: 24px;
|
width: 100%;
|
||||||
text-align: right;
|
th {
|
||||||
|
border-bottom: 1px solid var(--input-border-color);
|
||||||
|
padding: 4px;
|
||||||
|
}
|
||||||
|
tr {
|
||||||
|
td:nth-child(2) {
|
||||||
|
min-width: 24px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
:root[dir="rtl"] & {
|
:root[dir="rtl"] & {
|
||||||
left: 12px;
|
left: 12px;
|
||||||
right: initial;
|
right: initial;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
margin: 0 0 8px 24px;
|
margin: 0 0 8px 24px;
|
||||||
}
|
}
|
||||||
.close {
|
.close {
|
||||||
float: left;
|
float: left;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue