Proper welcome modal implementation

This commit is contained in:
Elnu 2023-06-22 13:10:55 -07:00
parent 50dce8da96
commit 6b6c047b68
11 changed files with 147 additions and 14 deletions

View file

@ -164,14 +164,20 @@ a {
flex-grow: 1;
align-items: center;
}
a {
.joinButton {
display: inline;
background: seagreen;
color: white;
font: inherit;
font-weight: bold;
border: none;
outline: none;
padding: 0.25em 0.5em 0.25em 0.5em;
border-radius: 2px;
&:disabled {
background: gray;
}
}
}
.recommended {
@ -194,4 +200,9 @@ a {
}
}
}
}
.icon {
height: 1.5em;
vertical-align: middle;
}