Update globals.scss

This commit is contained in:
Justin Edmund 2023-06-30 22:56:40 -07:00
parent 43d5faeead
commit ab6897c205

View file

@ -91,42 +91,50 @@ h1 {
text-align: center; text-align: center;
} }
select { h5 {
appearance: none; font-size: $font-small;
background-color: var(--input-bound-bg); font-weight: $medium;
background-image: url('/icons/Arrow.svg'); // opacity: 0.7;
background-repeat: no-repeat;
background-position-y: center;
background-position-x: 97%;
background-size: $unit * 1.5;
border: none;
border-radius: 6px;
color: $grey-15;
margin-bottom: $unit;
font-size: $font-regular;
padding: 0 ($unit * 2);
height: $unit * 6;
width: 100%;
&:hover { &.wind {
background-color: var(--input-bg-hover); color: $wind-bg-20;
cursor: pointer; }
&.fire {
color: $fire-bg-20;
}
&.water {
color: $water-bg-20;
}
&.earth {
color: $earth-bg-20;
}
&.dark {
color: $dark-bg-10;
}
&.light {
color: $light-bg-20;
} }
} }
#Content { // Used for collection pages
#Teams,
#Profile {
display: flex; display: flex;
height: 100%;
flex-direction: column; flex-direction: column;
gap: $unit * 3; gap: $unit * 2;
margin-top: $unit * 3;
min-width: 752px;
@include breakpoint(tablet) { h1 {
min-width: auto; font-weight: $medium;
width: 100%;
} }
} }
// Used for static pages
.PageContent { .PageContent {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -152,14 +160,6 @@ select {
line-height: 1.3; line-height: 1.3;
} }
#Teams,
#Profile {
display: flex;
height: 100%;
flex-direction: column;
gap: $unit * 2;
}
img.profile { img.profile {
background: $grey-90; background: $grey-90;
@ -256,6 +256,7 @@ select {
} }
} }
// Used for server unavailable component
.ServerUnavailableWrapper { .ServerUnavailableWrapper {
display: flex; display: flex;
align-items: center; align-items: center;
@ -308,81 +309,9 @@ select {
} }
} }
} }
.LinkItem {
$diameter: $unit-6x;
align-items: center;
background: var(--dialog-bg);
border: 1px solid var(--link-item-bg);
border-radius: $card-corner;
display: flex;
min-height: 82px;
transition: background $duration-zoom ease-in,
transform $duration-zoom ease-in;
&:hover {
background: var(--link-item-bg);
color: var(--text-primary);
.ShareIcon {
fill: var(--text-primary);
transform: translate($unit-half, calc(($unit * -1) / 2));
}
}
&.Github {
&:hover {
.Left svg {
fill: var(--text-primary);
}
}
}
&.Discord:hover .Left svg {
fill: #5865f2;
}
a {
display: flex;
justify-content: space-between;
padding: $unit-2x;
width: 100%;
&:hover {
text-decoration: none;
}
.Left {
align-items: center;
display: flex;
gap: $unit-2x;
flex-grow: 1;
h3 {
font-weight: 600;
max-width: 70%;
line-height: 1.3;
}
}
svg {
fill: var(--link-item-image-color);
width: $diameter;
height: auto;
transition: fill $duration-zoom ease-in;
&.ShareIcon {
width: $unit-4x;
}
}
}
h3 {
font-weight: $bold;
}
}
} }
// Used when a resource can be found
#NotFound { #NotFound {
height: 200px; height: 200px;
width: 400px; width: 400px;
@ -398,6 +327,7 @@ select {
} }
} }
// Used in _app.tsx
.ToastViewport { .ToastViewport {
position: fixed; position: fixed;
bottom: 0px; bottom: 0px;
@ -413,3 +343,7 @@ select {
list-style: none; list-style: none;
outline: none; outline: none;
} }
div[data-radix-popper-content-wrapper] {
z-index: 100 !important;
}