diff options
author | Chocobozzz <me@florianbigard.com> | 2021-05-27 18:25:00 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-06-28 10:54:02 +0200 |
commit | 8cbc40b2fe9d36ef0505b9441276ca561342e9e9 (patch) | |
tree | 5777288d76c0926f5b4484e2689d0fe741462a36 /client/src/app/+my-library/my-ownership | |
parent | fa12eacc014aae8094d108634371640f2695bf9f (diff) | |
download | PeerTube-8cbc40b2fe9d36ef0505b9441276ca561342e9e9.tar.gz PeerTube-8cbc40b2fe9d36ef0505b9441276ca561342e9e9.tar.zst PeerTube-8cbc40b2fe9d36ef0505b9441276ca561342e9e9.zip |
Move to sass module
Diffstat (limited to 'client/src/app/+my-library/my-ownership')
-rw-r--r-- | client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.scss | 4 | ||||
-rw-r--r-- | client/src/app/+my-library/my-ownership/my-ownership.component.scss | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.scss b/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.scss index 9468c9c4b..27d5998d3 100644 --- a/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.scss +++ b/client/src/app/+my-library/my-ownership/my-accept-ownership/my-accept-ownership.component.scss | |||
@@ -1,5 +1,5 @@ | |||
1 | @use '_variables'; | 1 | @use '_variables' as *; |
2 | @use '_mixins'; | 2 | @use '_mixins' as *; |
3 | 3 | ||
4 | .peertube-select-container { | 4 | .peertube-select-container { |
5 | @include peertube-select-container(350px); | 5 | @include peertube-select-container(350px); |
diff --git a/client/src/app/+my-library/my-ownership/my-ownership.component.scss b/client/src/app/+my-library/my-ownership/my-ownership.component.scss index c834bc768..296659ea0 100644 --- a/client/src/app/+my-library/my-ownership/my-ownership.component.scss +++ b/client/src/app/+my-library/my-ownership/my-ownership.component.scss | |||
@@ -1,5 +1,6 @@ | |||
1 | @use '_miniature'; | 1 | @use 'sass:math'; |
2 | @use '_mixins'; | 2 | @use '_miniature' as *; |
3 | @use '_mixins' as *; | ||
3 | 4 | ||
4 | .chip { | 5 | .chip { |
5 | @include chip; | 6 | @include chip; |
@@ -19,7 +20,7 @@ | |||
19 | @include margin-right(0.5rem); | 20 | @include margin-right(0.5rem); |
20 | 21 | ||
21 | height: $image-height; | 22 | height: $image-height; |
22 | width: #{(16/9) * $image-height}; | 23 | width: #{math.div(16, 9) * $image-height}; |
23 | border-radius: 2px; | 24 | border-radius: 2px; |
24 | border: 0; | 25 | border: 0; |
25 | background: transparent; | 26 | background: transparent; |