Skip to content

Commit

Permalink
✨ feat(forms.scss): Restrict transition animation to only box shadow #…
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiderpig86 committed Aug 21, 2023
1 parent 7fd9209 commit 4731e12
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -12219,7 +12219,7 @@ select {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down Expand Up @@ -12371,7 +12371,7 @@ textarea[type=text] {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down Expand Up @@ -12529,7 +12529,7 @@ select {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-all.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/cirrus-core.css
Original file line number Diff line number Diff line change
Expand Up @@ -10798,7 +10798,7 @@ select {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down Expand Up @@ -10950,7 +10950,7 @@ textarea[type=text] {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down Expand Up @@ -11108,7 +11108,7 @@ select {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-core.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -10799,7 +10799,7 @@ select {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down Expand Up @@ -10951,7 +10951,7 @@ textarea[type=text] {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down Expand Up @@ -11109,7 +11109,7 @@ select {
font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;
/* Input Field Sizes */
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
font-family: map-get($map: $font-families, $key: secondary);
font-size: var(--font-size-m);
letter-spacing: 0.02rem;
transition: all 0.3s;
transition: box-shadow 0.3s;
outline: none;
padding: 0.85rem 1.1rem;

Expand Down

0 comments on commit 4731e12

Please sign in to comment.