mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
parent
4aa1784ba3
commit
dd7aa29297
1 changed files with 20 additions and 4 deletions
|
@ -69,7 +69,12 @@
|
|||
|
||||
&__github-corner {
|
||||
top: 0;
|
||||
right: 0;
|
||||
:root[dir="ltr"] & {
|
||||
right: 0;
|
||||
}
|
||||
:root[dir="rtl"] & {
|
||||
left: 0;
|
||||
}
|
||||
position: absolute;
|
||||
width: 40px;
|
||||
}
|
||||
|
@ -77,18 +82,29 @@
|
|||
&__footer {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
right: 0;
|
||||
:root[dir="ltr"] & {
|
||||
right: 0;
|
||||
}
|
||||
:root[dir="rtl"] & {
|
||||
left: 0;
|
||||
}
|
||||
width: 190px;
|
||||
}
|
||||
|
||||
.zen-mode-transition {
|
||||
transition: transform 0.5s ease-in-out;
|
||||
&.transition-left {
|
||||
:root[dir="ltr"] &.transition-left {
|
||||
transform: translate(-999px, 0);
|
||||
}
|
||||
&.transition-right {
|
||||
:root[dir="ltr"] &.transition-right {
|
||||
transform: translate(999px, 0px);
|
||||
}
|
||||
:root[dir="rtl"] &.transition-left {
|
||||
transform: translate(999px, 0);
|
||||
}
|
||||
:root[dir="rtl"] &.transition-right {
|
||||
transform: translate(-999px, 0);
|
||||
}
|
||||
}
|
||||
|
||||
.disable-zen-mode {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue