Skip to content

Commit cb2b12e

Browse files
committed
fix: update a-grid breakpoints and a-input class
1 parent 8d4f9aa commit cb2b12e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/atoms/a-grid/a-grid-item.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
.a-grid-item--column-#{$i} {
99
grid-column: span #{$i};
1010

11-
@include for-tablet-down {
11+
@include for-medium-desktop-down{
1212
@if $i >= 6 {
1313
grid-column: span 12;
1414
} @else {
1515
grid-column: span 6;
1616
}
1717
}
18-
@include for-mobile-down {
18+
@include for-large-tablet-down {
1919
grid-column: span 12;
2020
}
2121
}

src/components/atoms/a-input/a-input.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ export default {
113113
},
114114
methods: {
115115
handleHasValue(value) {
116+
if (!this.$refs.input) return;
116117
if (value) {
117118
this.$refs.input.classList.add('a-input--behavior-has-value');
118119
} else {

0 commit comments

Comments
 (0)