d19c2c49a0
still need to test connecting, etc.
39 lines
740 B
SCSS
39 lines
740 B
SCSS
@import "theme.scss";
|
|
|
|
#guild {
|
|
flex: 1;
|
|
display: flex;
|
|
}
|
|
|
|
#guild-sidebar {
|
|
flex: none; /* >:| NOT GONNA SHINK BOI */
|
|
width: 240px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: $background-secondary;
|
|
border-top-left-radius: 8px;
|
|
}
|
|
|
|
#guild-name-container {
|
|
padding: 0 16px;
|
|
height: 48px;
|
|
font-weight: 600;
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
color: $header-primary;
|
|
border-bottom: 1px solid $background-secondary-alt;
|
|
}
|
|
|
|
#guild-name {
|
|
display: block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#guild.privilege-modify_profile #guild-name,
|
|
#guild.privilege-modify_members #guild-name {
|
|
cursor: pointer;
|
|
}
|