Skip to content

Commit

Permalink
chore: Fix SASS warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Dec 22, 2024
1 parent 92903ef commit aad12b2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ onBeforeMount(() => {
</script>
<style lang="scss">
@use "sass:selector";
.v-application {
p {
margin-bottom: 1rem;
Expand Down Expand Up @@ -132,24 +134,24 @@ span.anchor {
&--variant-outlined {
border-radius: 4px !important;
@at-root #{selector-unify(".v-theme--light", &)} {
@at-root #{selector.unify(".v-theme--light", &)} {
border: thin solid rgba(0, 0, 0, 0.42);
}
@at-root #{selector-unify(".v-theme--dark", &)} {
@at-root #{selector.unify(".v-theme--dark", &)} {
border: thin solid rgba(255, 255, 255, 0.24);
}
}
/* Striped Tables */
&--variant-striped {
@at-root #{selector-unify(".v-theme--light", &)} {
@at-root #{selector.unify(".v-theme--light", &)} {
tbody tr:nth-of-type(odd) {
background-color: rgba(0, 0, 0, 0.05);
}
}
@at-root #{selector-unify(".v-theme--dark", &)} {
@at-root #{selector.unify(".v-theme--dark", &)} {
tbody tr:nth-of-type(odd) {
background-color: rgba(255, 255, 255, 0.04);
}
Expand Down

0 comments on commit aad12b2

Please sign in to comment.