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.
49 lines
798 B
SCSS
49 lines
798 B
SCSS
4 years ago
|
@import "../css/variables.module";
|
||
5 years ago
|
|
||
4 years ago
|
.excalidraw {
|
||
4 years ago
|
.Dialog {
|
||
|
user-select: text;
|
||
|
cursor: auto;
|
||
|
}
|
||
|
|
||
5 years ago
|
.Dialog__title {
|
||
4 years ago
|
margin: 0;
|
||
2 years ago
|
text-align: left;
|
||
|
font-size: 1.25rem;
|
||
|
border-bottom: 1px solid var(--dialog-border-color);
|
||
|
padding: 0 0 0.75rem;
|
||
|
margin-bottom: 1.5rem;
|
||
5 years ago
|
}
|
||
2 years ago
|
|
||
|
.Dialog__close {
|
||
|
color: var(--color-gray-40);
|
||
|
margin: 0;
|
||
|
position: absolute;
|
||
|
top: 0.75rem;
|
||
|
right: 0.5rem;
|
||
|
border: 0;
|
||
|
background-color: transparent;
|
||
|
line-height: 0;
|
||
|
cursor: pointer;
|
||
|
|
||
|
&:hover {
|
||
|
color: var(--color-gray-60);
|
||
|
}
|
||
|
&:active {
|
||
|
color: var(--color-gray-40);
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
width: 1.5rem;
|
||
|
height: 1.5rem;
|
||
|
}
|
||
|
}
|
||
1 year ago
|
|
||
|
.Dialog--fullscreen {
|
||
|
.Dialog__close {
|
||
|
top: 1.25rem;
|
||
|
right: 1.25rem;
|
||
|
}
|
||
|
}
|
||
5 years ago
|
}
|