Added basic artist css

This commit is contained in:
Daniel Miller 2024-12-11 03:46:07 +00:00
parent 94880ead7c
commit 88cd5544fd

31
style/artist.scss Normal file
View File

@ -0,0 +1,31 @@
.artist-container {
.artist-header {
display: flex;
.artist-image {
width: 75px;
height: 75px;
border-radius: 50%;
padding: 10px;
margin: auto;
svg {
padding: 0;
margin: 0;
}
}
h1 {
font-size: 40px;
align-self: center;
padding: 10px;
}
}
.artist-details {
p {
font-size: 1rem;
margin: 0.5rem;
}
}
}