Skip to content

Instantly share code, notes, and snippets.

@b4n92uid
Last active August 17, 2021 22:16
Show Gist options
  • Save b4n92uid/e5e8e5e07cf08cba57e5de360502e82d to your computer and use it in GitHub Desktop.
Save b4n92uid/e5e8e5e07cf08cba57e5de360502e82d to your computer and use it in GitHub Desktop.
[Vuetify] SCSS Helper
.v-application {
.h-100 {
height: 100% !important;
}
.w-100 {
width: 100% !important;
}
@for $i from 1 through 12 {
.line-height-#{$i} {
line-height: 1 + (($i - 1) * 0.1) !important;
}
}
@for $i from 1 through 12 {
.flex-gap-#{$i} {
gap: 4px * $i !important;
}
}
.text--no-beak {
white-space: initial;
word-break: normal;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment