aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-10-22 16:18:00 +0200
committerChocobozzz <me@florianbigard.com>2021-10-22 16:18:00 +0200
commit02b2e482e0bdf16432b1ee34e95a71bbad39a4ff (patch)
tree48f45d24881ccead3fda36bc2fc9f57c054f5c03 /client/src/sass
parent60dd77c6922fced1945635a16ac7ecf1df43a839 (diff)
downloadPeerTube-02b2e482e0bdf16432b1ee34e95a71bbad39a4ff.tar.gz
PeerTube-02b2e482e0bdf16432b1ee34e95a71bbad39a4ff.tar.zst
PeerTube-02b2e482e0bdf16432b1ee34e95a71bbad39a4ff.zip
Fix some old typing issues
Diffstat (limited to 'client/src/sass')
-rw-r--r--client/src/sass/include/_mixins.scss4
-rw-r--r--client/src/sass/include/_variables.scss3
2 files changed, 4 insertions, 3 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss
index fedc022e0..6055ce53c 100644
--- a/client/src/sass/include/_mixins.scss
+++ b/client/src/sass/include/_mixins.scss
@@ -264,8 +264,10 @@
264 font-size: 15px; 264 font-size: 15px;
265 height: $button-height; 265 height: $button-height;
266 line-height: $button-height; 266 line-height: $button-height;
267 // FIXME: because of primeng that redefines border-radius of all input[type="..."] 267
268 // Because of primeng that redefines border-radius of all input[type="..."]
268 border-radius: 3px !important; 269 border-radius: 3px !important;
270
269 text-align: center; 271 text-align: center;
270 cursor: pointer; 272 cursor: pointer;
271} 273}
diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss
index f973b3257..e1d3716dd 100644
--- a/client/src/sass/include/_variables.scss
+++ b/client/src/sass/include/_variables.scss
@@ -53,8 +53,7 @@ $sub-menu-height: 81px;
53 53
54$channel-background-color: #f6ede8; 54$channel-background-color: #f6ede8;
55 55
56// FIXME: cannot use math.div here because of compilation error 56$banner-inverted-ratio: math.div(1, 6);
57$banner-inverted-ratio: 0.1666666666;
58 57
59$max-channels-width: 1200px; 58$max-channels-width: 1200px;
60 59