Skip to content

Commit

Permalink
Fix/small cleanup (#771)
Browse files Browse the repository at this point in the history
* remove semicolon

* update fe-wrapper scss
  • Loading branch information
ZacButko authored Aug 16, 2022
1 parent 99827fc commit fc24fce
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules/
**/*.scss
**/*.md
**/*.json
packages/esm-form-entry-app/src/app/loader/loader.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
@import "~@openmrs/esm-styleguide/src/vars";
@import "~carbon-components/src/globals/scss/vars";
@import "~carbon-components/src/globals/scss/mixins";
@use '@carbon/styles/scss/spacing';
@use '@carbon/colors';
@use '@carbon/styles/scss/type';
@import '~@openmrs/esm-styleguide/src/vars';


.error-tile {
width: 60%;
Expand All @@ -18,27 +20,27 @@
}

.heading {
@include carbon--type-style('productive-heading-02');
color: $text-01;
@include type.type-style('productive-heading-02');
color: colors.$gray-100;
}

.helperText {
margin-top: 0.5rem;
@include carbon--type-style('body-long-01');
color: $text-02;
@include type.type-style('body-01');
color: colors.$gray-90;
}

.separator {
@include carbon--type-style('body-short-01');
color: $text-02;
@include type.type-style('body-01');
color: colors.$gray-90;
width: 12rem;
margin: 1.375rem auto;
overflow: hidden;
text-align: center;
}

.separator::before, .separator::after {
background-color: $text-03;
background-color: colors.$gray-40;
content: "";
display: inline-block;
height: 1px;
Expand Down Expand Up @@ -86,7 +88,7 @@
}

.error-content {
border-top: 1px solid lightgray;
border-top: 1px solid colors.$gray-20;
margin: -4px;
padding: 4px;
}
Expand All @@ -109,7 +111,6 @@
}

.form-container {
font-size: 40px !important;
display: flex;
flex-direction: column;
justify-content: space-between;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
</div>
</div>
<div class="cds--inline-loading__text">{{ loadingMessage }}</div>
</div>;
</div>

0 comments on commit fc24fce

Please sign in to comment.