Mockup welcome modal

This commit is contained in:
Elnu 2023-06-19 12:34:27 -07:00
parent af9aa1b326
commit 839d6f80ab
3 changed files with 71 additions and 0 deletions

View file

@ -120,4 +120,49 @@ a {
&.phrase {
color: #fab387;
}
}
.servers {
display: flex;
gap: 0.5em;
& > * {
display: flex;
flex-direction: column;
gap: 0.5em;
border: 2px solid;
border-radius: 0.5em;
padding: 0.5em;
width: 100%;
align-items: center;
text-align: center;
img {
width: 96px;
border-radius: 100%;
border: 2px solid;
}
.name {
display: flex;
flex-grow: 1;
align-items: center;
}
}
.recommended {
border-color: mediumseagreen;
.label-wrapper {
height: 0;
.label {
position: relative;
width: fit-content;
border: auto;
bottom: 0px;
background: mediumseagreen;
color: white;
font-weight: bold;
font-size: 0.75em;
text-transform: uppercase;
padding: 0 0.5em 0 0.5em;
border-radius: 2px;
}
}
}
}