mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
17 lines
234 B
CSS
17 lines
234 B
CSS
html,
|
|
html[data-active='false'] {
|
|
opacity: 0;
|
|
}
|
|
|
|
html[data-active='false'] {
|
|
transition: opacity 0.01s 0.2s;
|
|
}
|
|
|
|
html[data-active='false'] * {
|
|
-webkit-app-region: no-drag !important;
|
|
}
|
|
|
|
html[data-active='true'] {
|
|
opacity: 1;
|
|
}
|