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 ab49531 commit 6533c3dCopy full SHA for 6533c3d
src/app/components/base/check-box/CheckBox.vue
@@ -5,7 +5,7 @@
5
<div :class="$style.wrapper">
6
<input :id="inputId" v-model="modelValue" :class="$style.input" type="checkbox" />
7
<div :class="$style.box">
8
- <RiCheckLine :class="$style.icon" />
+ <RiCheckLine size="16" :class="$style.icon" />
9
</div>
10
11
@@ -53,6 +53,9 @@ const inputId = uuid();
53
}
54
55
.box {
56
+ display: flex;
57
+ align-items: center;
58
+ justify-content: center;
59
background: var(--input-field-background);
60
border-radius: var(--border-radius-m);
61
@@ -64,7 +67,6 @@ const inputId = uuid();
64
67
65
68
.input {
66
69
position: absolute;
- height: 30px;
70
padding: 0 8px;
71
display: flex;
72
align-items: center;
0 commit comments