cordis/client/webapp/styles/guild.scss
Michael Peters d19c2c49a0 minor logging fix and it's launching at least.
still need to test connecting, etc.
2021-11-22 01:05:14 -06:00

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;
}