nitter/src/sass/profile/_base.scss

62 lines
948 B
SCSS
Raw Normal View History

2019-09-13 08:44:21 +00:00
@import '_variables';
@import '_mixins';
@import 'card';
@import 'photo-rail';
2019-09-13 17:52:05 +00:00
.profile-tabs {
2019-09-13 08:44:21 +00:00
@include panel(auto, 900px);
2019-09-13 17:52:05 +00:00
.timeline-container {
float: right;
2019-09-13 08:44:21 +00:00
width: 68% !important;
2019-09-13 17:52:05 +00:00
max-width: unset;
2019-09-13 08:44:21 +00:00
}
}
.profile-banner {
padding-bottom: 4px;
a {
display: inherit;
line-height: 0;
}
img {
width: 100%;
}
}
.profile-banner-color {
width: 100%;
padding-bottom: 25%;
}
.profile-tab {
padding: 0 4px 0 0;
box-sizing: border-box;
display: inline-block;
font-size: 14px;
text-align: left;
vertical-align: top;
max-width: 32%;
top: 50px;
}
@media(max-width: 600px) {
.profile-tabs {
width: 100vw;
2019-09-13 17:57:27 +00:00
.timeline-container {
2019-09-13 08:44:21 +00:00
width: 100% !important;
}
}
.profile-tab {
width: 100%;
max-width: unset;
position: initial !important;
padding: 0;
}
}