diff --git a/src/views/ArtistSearch.scss b/src/views/ArtistSearch.scss
index 45f1cae..7f0f07e 100644
--- a/src/views/ArtistSearch.scss
+++ b/src/views/ArtistSearch.scss
@@ -1,15 +1,48 @@
.spotify {
text-align: center;
- ul {
- list-style-type: none;
- max-width: 60em;
- margin: auto;
- padding: 0;
+ .search-field {
+ border: solid thin #b6b6b6;
+ border-radius: 5px;
+ position: relative;
+ width: 31em;
+ height: 3em;
+ margin: 2em auto;
- li {
- display: inline-block;
+ input {
+ border: none;
+ font-size: 15pt;
+ width: 100%;
+ height: 100%;
+ margin: -1px;
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ background: transparent;
+ text-align: center;
+
+ &::placeholder {
+ color: black;
+ }
+ }
+
+ svg {
+ width: 30px;
+ position: absolute;
+ right: 0;
+ bottom: 3px;
+ }
+ }
+
+ ul {
+ list-style-type: none;
+ max-width: 60em;
+ margin: auto;
+ padding: 0;
+
+ li {
+ display: inline-block;
margin: 10pt 14pt;
- }
- }
+ }
+ }
}
diff --git a/src/views/Login.jsx b/src/views/Login.jsx
index c29dc77..0e085b4 100644
--- a/src/views/Login.jsx
+++ b/src/views/Login.jsx
@@ -1,12 +1,23 @@
import React from 'react'
import './Login.scss'
+const spotify = (
+
+)
+
function Login() {
return (
)
}
diff --git a/src/views/Login.scss b/src/views/Login.scss
index f815e5c..aa0a3ab 100644
--- a/src/views/Login.scss
+++ b/src/views/Login.scss
@@ -1,3 +1,25 @@
.login {
text-align: center;
+
+ h1 {
+ margin-bottom: 2em;
+ }
+
+ a {
+ width: 150px;
+ border: solid thin #b6b6b6;
+ border-radius: 5px;
+ text-decoration: none;
+ padding: 14px 148px;
+ position: relative;
+ color: black;
+ font-size: 16pt;
+
+ svg {
+ width: 35px;
+ position: absolute;
+ right: 8px;
+ bottom: 8px;
+ }
+ }
}