You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
858 B
SCSS
55 lines
858 B
SCSS
4 years ago
|
@import "../css/variables.module";
|
||
4 years ago
|
|
||
4 years ago
|
.excalidraw {
|
||
|
.Stats {
|
||
|
position: absolute;
|
||
|
top: 64px;
|
||
|
right: 12px;
|
||
|
font-size: 12px;
|
||
4 years ago
|
z-index: 10;
|
||
1 year ago
|
pointer-events: var(--ui-pointerEvents);
|
||
4 years ago
|
|
||
4 years ago
|
h3 {
|
||
|
margin: 0 24px 8px 0;
|
||
|
white-space: nowrap;
|
||
4 years ago
|
}
|
||
|
|
||
4 years ago
|
.close {
|
||
|
float: right;
|
||
|
height: 16px;
|
||
|
width: 16px;
|
||
|
cursor: pointer;
|
||
|
svg {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
4 years ago
|
}
|
||
4 years ago
|
|
||
|
table {
|
||
|
width: 100%;
|
||
|
th {
|
||
|
border-bottom: 1px solid var(--input-border-color);
|
||
|
padding: 4px;
|
||
|
}
|
||
|
tr {
|
||
|
td:nth-child(2) {
|
||
|
min-width: 24px;
|
||
|
text-align: right;
|
||
|
}
|
||
4 years ago
|
}
|
||
|
}
|
||
4 years ago
|
|
||
4 years ago
|
:root[dir="rtl"] & {
|
||
|
left: 12px;
|
||
|
right: initial;
|
||
4 years ago
|
|
||
4 years ago
|
h3 {
|
||
|
margin: 0 0 8px 24px;
|
||
|
}
|
||
|
.close {
|
||
|
float: left;
|
||
|
}
|
||
4 years ago
|
}
|
||
|
}
|
||
4 years ago
|
}
|