diff options
author | Chocobozzz <me@florianbigard.com> | 2022-10-31 14:45:21 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-10-31 14:45:21 +0100 |
commit | e4d9696af5927af86943e551d6d88346494ae9bd (patch) | |
tree | d48129b5e8954c650d711af4bf188098f77acf38 /client | |
parent | 5fc4a1825ca907e5fe8f8e7ca2493d9b613a9787 (diff) | |
download | PeerTube-e4d9696af5927af86943e551d6d88346494ae9bd.tar.gz PeerTube-e4d9696af5927af86943e551d6d88346494ae9bd.tar.zst PeerTube-e4d9696af5927af86943e551d6d88346494ae9bd.zip |
Fix horizontal overflow on rtl languages
Diffstat (limited to 'client')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 4738d1305..b5ccb6598 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -448,7 +448,10 @@ | |||
448 | [type=radio]:checked, | 448 | [type=radio]:checked, |
449 | [type=radio]:not(:checked) { | 449 | [type=radio]:not(:checked) { |
450 | position: absolute; | 450 | position: absolute; |
451 | left: -9999px; | 451 | opacity: 0; |
452 | cursor: pointer; | ||
453 | height: 0; | ||
454 | width: 0; | ||
452 | } | 455 | } |
453 | 456 | ||
454 | [type=radio]:checked + label, | 457 | [type=radio]:checked + label, |