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.
93 lines
1.5 KiB
SCSS
93 lines
1.5 KiB
SCSS
3 years ago
|
.App {
|
||
|
font-family: sans-serif;
|
||
|
text-align: center;
|
||
3 years ago
|
|
||
|
.comment-avatar {
|
||
|
background: #faa2c1;
|
||
|
border-radius: 66px 67px 67px 0px;
|
||
|
width: 2rem;
|
||
|
height: 2rem;
|
||
|
padding: 4px;
|
||
|
margin: 4px;
|
||
|
img {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
}
|
||
1 year ago
|
.app-title {
|
||
|
margin-block-start: 0.83em;
|
||
|
margin-block-end: 0.83em;
|
||
|
}
|
||
3 years ago
|
}
|
||
|
|
||
1 year ago
|
.button-wrapper {
|
||
|
input[type="checkbox"] {
|
||
|
margin: 5px;
|
||
|
}
|
||
|
button {
|
||
|
z-index: 1;
|
||
|
height: 40px;
|
||
|
max-width: 200px;
|
||
|
margin: 10px;
|
||
|
padding: 5px;
|
||
|
}
|
||
3 years ago
|
}
|
||
|
|
||
|
.excalidraw .App-menu_top .buttonList {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.excalidraw-wrapper {
|
||
|
height: 800px;
|
||
|
margin: 50px;
|
||
3 years ago
|
position: relative;
|
||
|
overflow: hidden;
|
||
3 years ago
|
}
|
||
|
|
||
|
:root[dir="ltr"]
|
||
|
.excalidraw
|
||
|
.layer-ui__wrapper
|
||
|
.zen-mode-transition.App-menu_bottom--transition-left {
|
||
|
transform: none;
|
||
|
}
|
||
|
|
||
|
.excalidraw .panelColumn {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.export-wrapper {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
margin: 50px;
|
||
|
|
||
|
&__checkbox {
|
||
|
display: flex;
|
||
|
}
|
||
|
}
|
||
3 years ago
|
|
||
|
.excalidraw {
|
||
|
--color-primary: #faa2c1;
|
||
|
--color-primary-darker: #f783ac;
|
||
|
--color-primary-darkest: #e64980;
|
||
|
--color-primary-light: #fcc2d7;
|
||
3 years ago
|
|
||
|
button.custom-element {
|
||
|
width: 2rem;
|
||
|
height: 2rem;
|
||
|
}
|
||
2 years ago
|
|
||
|
.custom-footer,
|
||
|
.custom-element {
|
||
|
padding: 0.1rem;
|
||
2 years ago
|
margin: 0 8px;
|
||
|
}
|
||
|
.layer-ui__wrapper__footer.App-menu_bottom {
|
||
|
align-items: stretch;
|
||
|
}
|
||
|
// till its merged in OSS
|
||
|
.App-toolbar-container .mobile-misc-tools-container {
|
||
|
position: absolute;
|
||
2 years ago
|
}
|
||
3 years ago
|
}
|