diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 12:58:40 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 12:58:40 -0500 |
| commit | 21f8621395532eb1d3a6e7fde217eb67ac9374fe (patch) | |
| tree | 380c309b86788c31705886fc580b63e09b82f344 /src/components | |
| parent | 65d0dbb9b3388e03c312c1dd456feeef740289e0 (diff) | |
Make ActionBar horizontally scroll on overflow
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/ActionBar.vue | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/ActionBar.vue b/src/components/ActionBar.vue index da70b8a..279a885 100644 --- a/src/components/ActionBar.vue +++ b/src/components/ActionBar.vue @@ -76,6 +76,12 @@ export default { </script> <style> +#action-bar { + max-width: 100vw; + overflow-x: auto; + white-space: nowrap; +} + #action-bar > * { margin-left: 0.5rem; } |
