Skip to content

Commit

Permalink
add border-radius variables
Browse files Browse the repository at this point in the history
  • Loading branch information
TarasKachmar2022 committed Mar 8, 2024
1 parent 9ff1e3f commit bafad99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/sass/base/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
--lh-team-descr: 1.63em;
--lh-team-subtitle: 1.26em;
--lh-team-subdescr: 1.63em;
// Letter spacings
// Letter spacings
--ls: 0em;
// Text colors
--main-txt-cl: #ffffff;
Expand All @@ -60,6 +60,9 @@
--layout-team-cl: rgba(0, 0, 0, 0.6);
// Icon colors
--icon-social-cl: #ffffff;
// Border radius
--br-btn: 6px;
--br-input: 4px;
//Border colors
--border-btn: #ffffff;
// Placeholder colors
Expand Down
2 changes: 1 addition & 1 deletion src/sass/components/_btn.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
border-width: 1px;
border-style: solid;
border-color: var(--border-btn);
border-radius: 6px;
border-radius: var(--br-btn);
padding-top: 10px;
padding-right: 31px;
padding-bottom: 10px;
Expand Down
2 changes: 1 addition & 1 deletion src/sass/components/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

.form__input {
border: transparent;
border-radius: 4px;
border-radius: var(--br-input);
height: 40px;
padding: 0 10;
outline: transparent;
Expand Down

0 comments on commit bafad99

Please sign in to comment.