]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-forms/select-shared.component.scss
add ng-select for templatable select options
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / select-shared.component.scss
1 $width-size: auto;
2
3 ng-select {
4 width: $width-size;
5 @media screen and (max-width: $width-size) {
6 width: 100%;
7 }
8 }
9
10 // make sure the image is vertically adjusted
11 ng-select ::ng-deep .ng-value-label img {
12 position: relative;
13 top: -1px;
14 }
15
16 ng-select ::ng-deep img {
17 border-radius: 50%;
18 height: 20px;
19 width: 20px;
20 }