cordis/client/webapp/styles/guild.scss

39 lines
740 B
SCSS
Raw Normal View History

2021-10-31 19:02:26 +00:00
@import "theme.scss";
#guild {
2021-10-31 19:02:26 +00:00
flex: 1;
display: flex;
}
#guild-sidebar {
2021-10-31 19:02:26 +00:00
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 {
2021-10-31 19:02:26 +00:00
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 {
2021-10-31 19:02:26 +00:00
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
#guild.privilege-modify_profile #guild-name,
#guild.privilege-modify_members #guild-name {
2021-10-31 19:02:26 +00:00
cursor: pointer;
}