Skip to content

Commit

Permalink
fix(inte): bug fix prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis committed Jun 19, 2024
1 parent b7e1aec commit 9489d12
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion assets/dist/styles.min.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions assets/src/scss/04_components/_components.collapse.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
transition: stroke var(--fm-transition-in-out);
}

&:not(.fm-c-collapse__head--fm-first) {
&:not(.fm-c-collapse__head--first) {
margin-bottom: $space-8;
}
}

.fm-c-collapse__head--fm-first {
.fm-c-collapse__head--first {
margin-bottom: 1rem;
}

.fm-c-collapse__head--fm-active {
.fm-c-collapse__head--active {
background-color: var(--fm-folder-collapse-active-bg);

& button {
Expand All @@ -53,7 +53,7 @@
}
}

.fm-c-collapse__head--fm-disabled {
.fm-c-collapse__head--disabled {
.fm-c-collapse__action {
color: var(--fm-folder-collapse-disabled);
}
Expand Down
2 changes: 1 addition & 1 deletion assets/src/scss/04_components/_components.content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
flex-direction: column;
gap: $space-8;

&--fm-grid {
&--grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: $space-16;
Expand Down
4 changes: 2 additions & 2 deletions assets/src/scss/04_components/_components.field.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
padding: 0.9rem 4rem 0.9rem $space-16;
border-radius: var(--fm-radius-md);

&:not(.fm-c-field__input--fm-error) {
&:not(.fm-c-field__input--error) {
&:focus {
border-color: var(--fm-border-grey-900);
}
Expand All @@ -24,7 +24,7 @@
}
}

.fm-c-field__input--fm-error {
.fm-c-field__input--error {
border-color: var(--fm-field-error-border);
}

Expand Down
8 changes: 4 additions & 4 deletions assets/src/scss/04_components/_components.modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@
}
}

.fm-c-modal--fm-open {
.fm-c-modal--open {
opacity: 1;
pointer-events: all;
transform: scale(1);
}

.fm-c-modal--fm-md {
.fm-c-modal--md {
width: 33rem;

@include max-width(md) {
width: calc(100% - 3.2rem);
}
}

.fm-c-modal--fm-lg {
.fm-c-modal--lg {
width: 68.6rem;

@include max-width(md) {
Expand Down Expand Up @@ -61,7 +61,7 @@
}
}

.fm-c-modal__content--fm-with-border {
.fm-c-modal__content--with-border {
border-radius: var(--fm-radius-md);
border: 1px solid var(--fm-border-grey-100);
padding: $space-16;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
transition: background-color var(--fm-transition-in-out);
}

.fm-c-toggle-buttons__action--fm-active {
.fm-c-toggle-buttons__action--active {
background-color: var(--fm-toggle-button-active-bg);

@include max-width(md) {
Expand Down

0 comments on commit 9489d12

Please sign in to comment.