Skip to content

Commit

Permalink
Merge pull request #60 from BinaryStudioAcademy/bugfix/10-white-fields
Browse files Browse the repository at this point in the history
bugfix/10-removed white background on autocomplete
  • Loading branch information
pospyra committed Aug 31, 2023
2 parents d164559 + e21a742 commit e732cc0
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions frontend/src/styles/global.sass
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
@import 'color-variables'
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@600&family=Open+Sans:wght@300;400;600;700&display=swap')

html, body, :root
html, body, :root
height: 100%

body
background-color: $dark-grey

button
button
all: unset
cursor: pointer

Expand All @@ -22,4 +22,14 @@ ul li

ul, p
padding: 0
margin: 0
margin: 0

input:-webkit-autofill,
input:-webkit-autofill:active
box-shadow: 0 0 0 30px $charcoal-grey inset
color: $white !important
input:-webkit-autofill::first-line
color: $white !important
input:-webkit-autofill:focus
-webkit-text-fill-color: $white

0 comments on commit e732cc0

Please sign in to comment.