Skip to content

Commit

Permalink
fix: remove border on modal input (#455)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeroen Claassens <support@favware.tech>
  • Loading branch information
mezotv and favna authored Aug 20, 2024
1 parent 5fe063a commit 900afa4
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class DiscordInputText extends LitElement {
height: 83px;
padding: 8px 38.92px 8px 8px;
border-radius: 3px;
border: 1px solid #b0b5bc;
border: medium;
background-color: #1e1f22;
color: #b0b5bc;
font-family: 'gg sans', 'Noto Sans', Whitney, 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
Expand All @@ -68,7 +68,7 @@ export class DiscordInputText extends LitElement {
height: 40px;
padding: 8px 38.92px 8px 8px;
border-radius: 3px;
border: 1px solid #b0b5bc;
border: medium;
background-color: #1e1f22;
color: #b0b5bc;
font-family: 'gg sans', 'Noto Sans', Whitney, 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
Expand Down Expand Up @@ -127,6 +127,7 @@ export class DiscordInputText extends LitElement {
:host([light-theme]) .discord-text-input-paragraph,
:host([light-theme]) .discord-text-input-short {
background-color: rgb(253, 253, 253);
border: 1px solid #b0b5bc;
}
:host([light-theme]) input,
Expand Down

0 comments on commit 900afa4

Please sign in to comment.