diff --git a/next-ui/.storybook/StoryWrapper.vue b/next-ui/.storybook/StoryWrapper.vue index 25b967b9..f7d145a6 100644 --- a/next-ui/.storybook/StoryWrapper.vue +++ b/next-ui/.storybook/StoryWrapper.vue @@ -21,7 +21,7 @@ export default { @import '../src/styles/global.scss'; .v-application__wrap { - min-height: unset !important; - height: auto !important; + min-height: unset; + height: auto; } diff --git a/next-ui/src/styles/global.scss b/next-ui/src/styles/global.scss index 12b97b44..809d645d 100644 --- a/next-ui/src/styles/global.scss +++ b/next-ui/src/styles/global.scss @@ -1,7 +1,3 @@ -html { - overflow-y: auto !important; -} - .link-none { text-decoration: none; } @@ -19,9 +15,9 @@ html { // --lines: the number of lines to display // --line-height: the line height .force-line-count { - display: -webkit-box !important; + display: -webkit-box; -webkit-line-clamp: var(--lines, 2); -webkit-box-orient: vertical; - overflow: hidden !important; + overflow: hidden; height: calc(var(--line-height) * var(--lines, 1) * 1rem); }