Skip to content

Commit

Permalink
use mixin flex-list-with-gap for a gap
Browse files Browse the repository at this point in the history
  • Loading branch information
budnik9 committed Dec 19, 2023
1 parent 46f98db commit 485c7b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import "../../../../../../constants";
@import "../../../../../../styles/sizes";
@import "../../../../../../styles/mixins";

.container {
--title-color: var(--primary-text);
Expand Down Expand Up @@ -89,9 +90,9 @@
}

.title {
display: flex;
@include flex-list-with-gap(0.5rem);

align-items: center;
gap: 8px;
color: var(--title-color);
font-size: $moderate-xsmall;
line-height: 1.5rem;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@import "../../../../../../styles/mixins";

.notionInfo {
display: flex;
gap: 10px;
@include flex-list-with-gap(0.5rem);
}

.link {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
@import "../../../../constants";
@import "../../../../styles/sizes";
@import "../../../../styles/mixins.scss";

.container {
min-height: 3.0625rem;
Expand Down Expand Up @@ -106,9 +107,9 @@
}

.title {
display: flex;
@include flex-list-with-gap(0.5rem);

align-items: center;
gap: 8px;
color: var(--primary-text);
font-size: $moderate-xsmall;
line-height: 1.5rem;
Expand Down

0 comments on commit 485c7b8

Please sign in to comment.