68 lines
No EOL
1.3 KiB
SCSS
68 lines
No EOL
1.3 KiB
SCSS
body {
|
|
background: #000;
|
|
}
|
|
|
|
app {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
// Hack for Depot spinner
|
|
.pb-custom-window-content > .ant-spin-nested-loading {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
|
|
& > div,
|
|
& > div > .ant-spin-container,
|
|
& .ant-layout {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.ant-layout {
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.logo {
|
|
position: fixed;
|
|
width: 333px;
|
|
height: 74px;
|
|
z-index: 1000;
|
|
// pointer-events: none;
|
|
|
|
& > img {
|
|
width: 100%;
|
|
filter: drop-shadow(5px 0px 5px rgba(0,0,0,0.5));
|
|
}
|
|
|
|
&::before {
|
|
content: '';
|
|
opacity: 0;
|
|
background: linear-gradient(100deg, rgba(255,0,0,1) 0%, rgba(255,154,0,1) 10%, rgba(208,222,33,1) 20%, rgba(79,220,74,1) 30%, rgba(63,218,216,1) 40%, rgba(47,201,226,1) 50%, rgba(28,127,238,1) 60%, rgba(95,21,242,1) 70%, rgba(186,12,248,1) 80%, rgba(251,7,217,1) 90%, rgba(255,0,0,1) 100%) 0 0/200% 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 16px;
|
|
bottom: 0;
|
|
transition: .5s opacity;
|
|
animation: a 3s linear infinite;
|
|
}
|
|
|
|
&:hover::before {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.ant-select:not(.ant-select-customize-input) .ant-select-selector {
|
|
line-height: 2;
|
|
}
|
|
|
|
@keyframes a {
|
|
to {
|
|
background-position: -200% 0
|
|
}
|
|
} |