2023-02-20 15:21:28 +00:00
|
|
|
#portal {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
/* set base font size to 13px */
|
|
|
|
font-size: 50.782% !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: var(--mu-colors-foreground-text-neutral-plain) !important;
|
|
|
|
overscroll-behavior-y: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide-scrollbar::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ellipsis {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2023-03-01 15:16:32 +00:00
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
from {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
transform: scale(1.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.animate-copy {
|
|
|
|
animation: pulse 0.2s;
|
|
|
|
transition: all 0.2s;
|
|
|
|
}
|
2023-03-08 08:58:07 +00:00
|
|
|
|
|
|
|
.remove-icon-background svg {
|
|
|
|
background: none !important;
|
|
|
|
}
|