We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d4f9aa commit cb2b12eCopy full SHA for cb2b12e
src/components/atoms/a-grid/a-grid-item.scss
@@ -8,14 +8,14 @@
8
.a-grid-item--column-#{$i} {
9
grid-column: span #{$i};
10
11
- @include for-tablet-down {
+ @include for-medium-desktop-down{
12
@if $i >= 6 {
13
grid-column: span 12;
14
} @else {
15
grid-column: span 6;
16
}
17
18
- @include for-mobile-down {
+ @include for-large-tablet-down {
19
20
21
src/components/atoms/a-input/a-input.vue
@@ -113,6 +113,7 @@ export default {
113
},
114
methods: {
115
handleHasValue(value) {
116
+ if (!this.$refs.input) return;
117
if (value) {
118
this.$refs.input.classList.add('a-input--behavior-has-value');
119
} else {
0 commit comments