@appscode/design-system 1.1.0-alpha.26 → 1.1.0-alpha.27

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.
@@ -1,7 +1,4 @@
1
1
  .card-details {
2
- border: 1px solid #d2e7f9;
3
- padding: 30px 20px;
4
- // border-radius: 4px;
5
2
  transition: 0.3s ease-in-out;
6
3
  position: relative;
7
4
  z-index: 1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appscode/design-system",
3
- "version": "1.1.0-alpha.26",
3
+ "version": "1.1.0-alpha.27",
4
4
  "description": "A design system for Appscode websites and dashboards made using Bulma",
5
5
  "main": "main.scss",
6
6
  "scripts": {
@@ -7,14 +7,11 @@ const props = withDefaults(
7
7
  const { hasOptionButtons, disabled } = toRefs(props);
8
8
  </script>
9
9
  <template>
10
- <div class="card-details-wrapper">
10
+ <div class="card-details-wrapper has-hover-style">
11
11
  <div class="options-wrapper">
12
12
  <slot v-if="hasOptionButtons" name="option-buttons" />
13
13
  </div>
14
- <div
15
- class="card-details has-hover-style"
16
- :class="{ 'is-disabled': disabled }"
17
- >
14
+ <div class="card-details" :class="{ 'is-disabled': disabled }">
18
15
  <div class="c-header">
19
16
  <div class="c-logo">
20
17
  <slot name="card-logo" />
@@ -37,9 +34,11 @@ const { hasOptionButtons, disabled } = toRefs(props);
37
34
 
38
35
  <style lang="scss">
39
36
  .card-details-wrapper {
37
+ padding: 30px 20px;
40
38
  position: relative;
41
39
  width: 420px;
42
- height: 100%;
40
+ min-height: 190px;
41
+ border: 1px solid #d2e7f9;
43
42
  .options-wrapper {
44
43
  position: absolute;
45
44
  right: 15px;