bigbuffet-rw/app/styles/components/profile-media-panel.scss

63 lines
973 B
SCSS
Raw Normal View History

2020-08-14 11:01:12 -07:00
.media-panel {
@include standard-panel-shadow;
display: flex;
width: 100%;
border-radius: 10px;
flex-direction: column;
height: auto;
box-sizing: border-box;
background: var(--foreground-color);
&:first-child {
margin-top: 0;
}
&:not(:last-of-type) {
margin-bottom: 10px;
}
.media-panel-header {
display: flex;
2021-09-27 21:47:43 -07:00
align-items: center;
2020-08-14 11:01:12 -07:00
margin-bottom: 10px;
padding: 15px 15px 0;
&__icon {
margin-right: 10px;
2021-09-26 21:28:45 -07:00
font-size: 20px;
2021-09-27 21:47:43 -07:00
&.svg-icon {
width: 20px;
height: 20px;
}
2020-08-14 11:01:12 -07:00
}
&__label {
flex: 1 1;
color: var(--primary-text-color);
font-size: 16px;
font-weight: bold;
line-height: 19px;
}
}
&__content {
width: 100%;
padding: 8px 0;
}
&__list {
display: flex;
flex-wrap: wrap;
}
&__empty {
font-size: 14px;
color: var(--primary-text-color--faint);
}
.loading-indicator {
margin: 0 auto;
}
2020-08-14 11:01:12 -07:00
}