diff options
author | Meet Mangukiya <meetmangukiya98@gmail.com> | 2020-02-25 03:29:49 +0530 |
---|---|---|
committer | Meet Mangukiya <meetmangukiya98@gmail.com> | 2020-02-25 03:38:10 +0530 |
commit | c6393f86d70ca33385cc8029e9e5029c5627d5c3 (patch) | |
tree | 54e02315d44f4e5cf7d4fd026a3b16536e24ff2c /docs/src/assets/bulma/elements/container.sass | |
parent | 9da85619e6bd1f274210a90883aba395497225d0 (diff) | |
download | mitmproxy-c6393f86d70ca33385cc8029e9e5029c5627d5c3.tar.gz mitmproxy-c6393f86d70ca33385cc8029e9e5029c5627d5c3.tar.bz2 mitmproxy-c6393f86d70ca33385cc8029e9e5029c5627d5c3.zip |
Remove yarn/npm from docs
Closes https://github.com/mitmproxy/mitmproxy/issues/3716
Diffstat (limited to 'docs/src/assets/bulma/elements/container.sass')
-rw-r--r-- | docs/src/assets/bulma/elements/container.sass | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/src/assets/bulma/elements/container.sass b/docs/src/assets/bulma/elements/container.sass new file mode 100644 index 00000000..d88eb94a --- /dev/null +++ b/docs/src/assets/bulma/elements/container.sass @@ -0,0 +1,24 @@ +$container-offset: (2 * $gap) !default + +.container + flex-grow: 1 + margin: 0 auto + position: relative + width: auto + &.is-fluid + max-width: none + padding-left: $gap + padding-right: $gap + width: 100% + +desktop + max-width: $desktop - $container-offset + +until-widescreen + &.is-widescreen + max-width: $widescreen - $container-offset + +until-fullhd + &.is-fullhd + max-width: $fullhd - $container-offset + +widescreen + max-width: $widescreen - $container-offset + +fullhd + max-width: $fullhd - $container-offset |