diff options
author | Wolfgang Müller | 2022-04-09 18:34:30 +0200 |
---|---|---|
committer | Wolfgang Müller | 2022-04-09 18:34:30 +0200 |
commit | 7be2d558d35cf02863a10427b0877bddae424e97 (patch) | |
tree | b4109648705341c720b2af0e4d5d23d7e5a728a2 /sass | |
parent | 31f7cf3bbe53cc285d7074562e1ee23c20519722 (diff) | |
download | zunzuncito-7be2d558d35cf02863a10427b0877bddae424e97.tar.gz |
Use float classes instead of inline styles
Commit ea7baaa (templates: Allow setting 'float' for figures in the
'img' shortcode, 2022-04-09) introduces inline styles which were
considered more straightforward than adding special CSS rules. Sadly,
restrictive Content-Security-Policy settings will make browsers
disregard inline styles as a security measure.
Since we don't want to turn off CSP, this comment implement CSS rules
for setting the float attribute on elements.
Diffstat (limited to '')
-rw-r--r-- | sass/style.sass | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sass/style.sass b/sass/style.sass index 69c0b1c..29de71b 100644 --- a/sass/style.sass +++ b/sass/style.sass @@ -118,6 +118,12 @@ body color: var(--fg-color) background-color: var(--bg-color) +.float-left + float: left + +.float-right + float: right + main display: flex flex-direction: column |