Skip to content

Commit

Permalink
fix(admin-ui): Fix width of affixed inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbromley committed Aug 7, 2023
1 parent 8169c4e commit 75d51ed
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
::ng-deep .has-prefix > {
input[type="text"], input[type="number"] {
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important
border-bottom-left-radius: 0 !important;
width: 100%;
}
}

Expand All @@ -37,6 +38,7 @@
input[type="text"], input[type="number"] {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
width: 100%;
}
}

Expand Down

0 comments on commit 75d51ed

Please sign in to comment.