Skip to content

Commit d3a7c28

Browse files
committed
Changed radio bg
1 parent c0e3bcb commit d3a7c28

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vue3-hive-ui-kit",
33
"private": false,
4-
"version": "0.7.21",
4+
"version": "0.7.22",
55
"type": "module",
66
"description": "UI kit for Vue 3",
77
"files": [

src/assets/radio-bg.svg

Lines changed: 4 additions & 0 deletions
Loading

src/assets/variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $accent-red: #b74a4a;
3535
$common-widget-height: 2.2rem;
3636
$common-widget-inner-height: 26px;
3737

38-
$bg-radio: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' /%3e%3c/svg%3e");
38+
$bg-radio: url('./radio-bg.svg');
3939

4040
$bg-checkbox: url('./check-mark.svg');
4141
$bg-checkbox-minus: url('./minus-icon.svg');

src/components/hive-radio-group/hive-radio-group.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ $gap: 15px;
143143
border-radius: 50%;
144144
margin-right: 0.5em;
145145
background-repeat: no-repeat;
146-
background-position: center center;
147-
background-size: 50% 50%;
146+
background-position: center;
147+
background-size: 100%;
148148
background-color: var(--bg-input, $bg-input);
149149
}
150150
}

src/examples/App.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ const a = 1;
88
</script>
99

1010
<template>
11-
<!-- <hive-splitter style="min-height: 100vh">
11+
<hive-splitter style="min-height: 100vh">
1212
<hive-pane id="light">
1313
<all-widgets />
1414
</hive-pane>
15-
<hive-pane id="dark">
15+
<!-- <hive-pane id="dark">
1616
<div hive-theme="dark" style="background: black; color: white">
1717
<all-widgets dark />
1818
</div>
19-
</hive-pane>
20-
</hive-splitter> -->
21-
<div>
19+
</hive-pane> -->
20+
</hive-splitter>
21+
<!-- <div>
2222
<filter-new />
23-
</div>
23+
</div> -->
2424
</template>
2525

2626
<style lang="scss"></style>

0 commit comments

Comments
 (0)