25 lines
394 B
CSS
25 lines
394 B
CSS
|
/*
|
||
|
Hides a bunch of useless crap and displays most avatars as squares instead of circles.
|
||
|
*/
|
||
|
|
||
|
.dashboard-right,
|
||
|
.trends {
|
||
|
display: none !important;
|
||
|
}
|
||
|
|
||
|
.content-main {
|
||
|
width: 70%;
|
||
|
}
|
||
|
|
||
|
.avatar,
|
||
|
.Avatar,
|
||
|
.DashboardProfileCard-avatarLink,
|
||
|
.DashboardProfileCard-avatarImage,
|
||
|
.nav .session .dropdown-toggle {
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
|
||
|
.nav .session .dropdown-toggle::before {
|
||
|
box-shadow: none;
|
||
|
}
|