@digigov/css 2.0.0-rc.2 → 2.0.0-rc.3

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": "@digigov/css",
3
- "version": "2.0.0-rc.2",
3
+ "version": "2.0.0-rc.3",
4
4
  "description": "Digigov CSS - Tailwind CSS Components",
5
5
  "author": "GRNET Devs <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
@@ -43,7 +43,6 @@
43
43
  }
44
44
  }
45
45
  }
46
-
47
46
  .ds-card__heading {
48
47
  @apply md:text-xl text-lg tracking-wide;
49
48
  @apply leading-8 !important;
@@ -55,6 +54,9 @@
55
54
  .ds-card--border-dark {
56
55
  @apply border-base-content;
57
56
  }
57
+ .ds-card--full-height {
58
+ @apply h-full;
59
+ }
58
60
  .ds-card__body {
59
61
  @apply flex flex-col gap-3 md:gap-4 h-full;
60
62
  }
@@ -35,6 +35,9 @@
35
35
  &::marker {
36
36
  font-size: 0px;
37
37
  }
38
+ &::-webkit-details-marker {
39
+ display: none;
40
+ }
38
41
  }
39
42
  .ds-dropdown__button.ds-link + .ds-dropdown__content {
40
43
  @apply mt-4 print:text-base-content;
@@ -28,7 +28,7 @@
28
28
  .ds-input,
29
29
  .ds-select,
30
30
  .ds-textarea {
31
- @apply md:text-lg text-base w-full p-2 border-2 border-base-content bg-base-100;
31
+ @apply md:text-lg text-base w-full p-2 border-2 border-base-content bg-base-100 rounded-none;
32
32
  text-indent: 2px;
33
33
  &:focus {
34
34
  outline: 4px solid var(--color-focus);