Basic artist page

This commit is contained in:
Tudorel Oprisan 2024-12-20 13:57:30 +00:00
parent e622242256
commit ffd2c8d3fa
3 changed files with 10408 additions and 3 deletions

View File

@ -41,6 +41,7 @@ h1 {
#app {
max-width: 1280px;
width: 100%;
margin: 0 auto;
padding: 2rem;
text-align: center;

View File

@ -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