Skip to content

Commit

Permalink
chore: Fix style.css use of non existent class
Browse files Browse the repository at this point in the history
  • Loading branch information
Angi-Kinas committed Nov 25, 2024
1 parent 0f8047b commit d8b1ea9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/metadata-editor/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ body {
}

.input-as-button {
@apply border-2 border-gray-300 hover:border-main bg-transparent gn-ui-text-input hover:text-main py-[11.5px] pl-[14px] pr-2;
@apply border-2 border-gray-300 hover:border-main bg-transparent hover:text-main py-[11.5px] pl-[14px] pr-2;
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[choices]="licenceOptions"
[selected]="selectedLicence"
(selectValue)="handleLicenceSelection($event)"
[extraBtnClass]="'input-as-button'"
[extraBtnClass]="'input-as-button gn-ui-text-input'"
>
</gn-ui-dropdown-selector>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[selected]="selectedFrequency"
(selectValue)="onSelectFrequencyValue($event)"
[disabled]="!planned"
[extraBtnClass]="'input-as-button'"
[extraBtnClass]="'input-as-button gn-ui-text-input'"
>
</gn-ui-dropdown-selector>
</div>

0 comments on commit d8b1ea9

Please sign in to comment.