Basic artist page
This commit is contained in:
parent
e622242256
commit
ffd2c8d3fa
@ -41,6 +41,7 @@ h1 {
|
||||
|
||||
#app {
|
||||
max-width: 1280px;
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
|
||||
@ -34,12 +34,17 @@
|
||||
<style>
|
||||
.artist-container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive grid */
|
||||
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Responsive grid */
|
||||
gap: 16px;
|
||||
padding: 16px;
|
||||
padding: 0;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.artist-card {
|
||||
width: 100%; /* Ensure cards take up full width of the column */
|
||||
height: auto; /* Let the height adjust automatically */
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user