Skip to content

Commit 900afa4

Browse files
mezotvfavna
andauthoredAug 20, 2024··
fix: remove border on modal input (#455)
Co-authored-by: Jeroen Claassens <support@favware.tech>
1 parent 5fe063a commit 900afa4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎packages/core/src/components/discord-input-text/DiscordInputText.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export class DiscordInputText extends LitElement {
5555
height: 83px;
5656
padding: 8px 38.92px 8px 8px;
5757
border-radius: 3px;
58-
border: 1px solid #b0b5bc;
58+
border: medium;
5959
background-color: #1e1f22;
6060
color: #b0b5bc;
6161
font-family: 'gg sans', 'Noto Sans', Whitney, 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
@@ -68,7 +68,7 @@ export class DiscordInputText extends LitElement {
6868
height: 40px;
6969
padding: 8px 38.92px 8px 8px;
7070
border-radius: 3px;
71-
border: 1px solid #b0b5bc;
71+
border: medium;
7272
background-color: #1e1f22;
7373
color: #b0b5bc;
7474
font-family: 'gg sans', 'Noto Sans', Whitney, 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
@@ -127,6 +127,7 @@ export class DiscordInputText extends LitElement {
127127
:host([light-theme]) .discord-text-input-paragraph,
128128
:host([light-theme]) .discord-text-input-short {
129129
background-color: rgb(253, 253, 253);
130+
border: 1px solid #b0b5bc;
130131
}
131132
132133
:host([light-theme]) input,

0 commit comments

Comments
 (0)
Please sign in to comment.