cordis/client/webapp/styles/guild-members.scss

32 lines
660 B
SCSS
Raw Normal View History

2021-10-31 19:02:26 +00:00
@import "theme.scss";
#guild-members {
2021-10-31 19:02:26 +00:00
box-sizing: border-box;
flex: none; /* >:| NOT GONNA SHINK BOI */
background-color: $background-secondary;
width: 240px;
height: calc(100vh - 71px);
overflow-y: scroll;
padding: 8px 0 8px 8px;
}
#guild-members .member {
2021-10-31 19:02:26 +00:00
background-color: $background-secondary;
padding: 4px 8px;
margin-bottom: 4px;
border-radius: 4px;
}
#guild-members .member .name {
2021-10-31 19:02:26 +00:00
width: calc(208px - 40px);
}
#guild-members .member .status-circle {
2021-10-31 19:02:26 +00:00
border-color: $background-secondary;
}
#guild-members .member:hover {
2021-10-31 19:02:26 +00:00
background-color: $background-modifier-hover;
cursor: pointer;
}