28 lines
416 B
SCSS
28 lines
416 B
SCSS
|
@import '_variables';
|
||
|
@import '_mixins';
|
||
|
|
||
|
.root {
|
||
|
display: flex;
|
||
|
|
||
|
textarea {
|
||
|
@include peertube-textarea(100%, 150px);
|
||
|
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
|
||
|
/deep/ {
|
||
|
.nav-link {
|
||
|
display: flex !important;
|
||
|
align-items: center;
|
||
|
height: 30px !important;
|
||
|
padding: 0 15px !important;
|
||
|
}
|
||
|
|
||
|
.tab-content {
|
||
|
min-height: 75px;
|
||
|
padding: 15px;
|
||
|
font-size: 15px;
|
||
|
}
|
||
|
}
|
||
|
}
|