diff --git a/Video 84 - Project 2 - Spotify Clone/css/style.css b/Video 84 - Project 2 - Spotify Clone/css/style.css index 85eac9b0..b496a02e 100644 --- a/Video 84 - Project 2 - Spotify Clone/css/style.css +++ b/Video 84 - Project 2 - Spotify Clone/css/style.css @@ -321,6 +321,19 @@ body { width: 100%; } +/* CSS for the input search */ +#search { + border: none; + border-radius: 4px; + padding: 4px; + background-color: var(--bg-color); + color: white; + &:focus { + border: none; + outline: none; + } +} + @media (max-width: 1200px) { .left { position: absolute; @@ -437,4 +450,4 @@ body { -} \ No newline at end of file +} diff --git a/Video 84 - Project 2 - Spotify Clone/index.html b/Video 84 - Project 2 - Spotify Clone/index.html index ea254107..362ef9e6 100644 --- a/Video 84 - Project 2 - Spotify Clone/index.html +++ b/Video 84 - Project 2 - Spotify Clone/index.html @@ -19,7 +19,15 @@