@appartmint/mint 2.6.16 → 2.6.18

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/dist/css/mint.css CHANGED
@@ -2000,6 +2000,8 @@ textarea {
2000
2000
  display: flex;
2001
2001
  align-items: center;
2002
2002
  gap: 1rem;
2003
+ width: fit-content;
2004
+ cursor: pointer;
2003
2005
  }
2004
2006
  .mint-toggle div {
2005
2007
  display: flex;
@@ -2032,6 +2034,9 @@ textarea {
2032
2034
  background-color: var(--mint-brand-2);
2033
2035
  filter: grayscale(0);
2034
2036
  }
2037
+ .mint-check [type=checkbox]:checked + span i {
2038
+ opacity: 1;
2039
+ }
2035
2040
  .mint-check [type=checkbox] + span {
2036
2041
  display: flex;
2037
2042
  align-items: center;
@@ -2047,6 +2052,11 @@ textarea {
2047
2052
  filter: grayscale(1);
2048
2053
  transition: filter 300ms, background-color 300ms, left 300ms;
2049
2054
  }
2055
+ .mint-check [type=checkbox] + span i {
2056
+ color: var(--mint-back);
2057
+ opacity: 0;
2058
+ transition: opacity 300ms;
2059
+ }
2050
2060
  .mint-check + span {
2051
2061
  width: 1.5rem;
2052
2062
  text-align: center;