@radiantabyss/vue-components 1.4.8 → 1.4.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@radiantabyss/vue-components",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "author": "radiantabyss.com",
5
5
  "license": "ISC",
6
6
  "eslintConfig": {
@@ -78,8 +78,8 @@ export default {
78
78
 
79
79
  <template>
80
80
  <div class="timepicker" @keydown.esc="hide">
81
- <input type="text" :placeholder="placeholder" autocomplete="off" readonly
82
- @click="show('time')" ref="input" :value="value"
81
+ <input type="text" class="input" :placeholder="placeholder" autocomplete="off"
82
+ @click="show('time')" ref="input" :value="value" readonly
83
83
  />
84
84
 
85
85
  <div class="timepicker__time" ref="time"
@@ -22,7 +22,7 @@
22
22
 
23
23
  .datepicker__content {
24
24
  position: absolute;
25
- top: 36px;
25
+ top: 100%;
26
26
  left: 0;
27
27
  z-index: 100;
28
28
  border: 1px solid $primary;
@@ -13,23 +13,18 @@
13
13
  justify-content: space-around;
14
14
  align-items: center;
15
15
  position: absolute;
16
- top: 43px;
16
+ top: 100%;
17
17
  left: 0;
18
18
  z-index: 10;
19
19
  width: 130px;
20
20
  padding: 10px;
21
- border-radius: 5px;
22
- box-shadow: 1px 0 0 $lightgrey2, -1px 0 0 $lightgrey2,
23
- 0 1px 0 $lightgrey2, 0 -1px 0 $lightgrey2,
24
- 0 3px 13px rgba($black, 0.08);
21
+ border: 1px solid $primary;
22
+ border-radius: 4px;
25
23
  background: $bg-light;
26
24
  user-select: none;
27
25
 
28
26
  @include theme() {
29
- box-shadow: 1px 0 0 $lightgrey2--dark, -1px 0 0 $lightgrey2--dark,
30
- 0 1px 0 $lightgrey2--dark, 0 -1px 0 $lightgrey2--dark,
31
- 0 3px 13px rgba($white, 0.08);
32
- background: $bg-light--dark;
27
+ border-color: $primary--dark;
33
28
  }
34
29
 
35
30
  &:after {