More actions
No edit summary |
No edit summary |
||
| Line 14: | Line 14: | ||
background: #999; | background: #999; | ||
border-radius: 3px; | border-radius: 3px; | ||
} | } | ||
Revision as of 00:41, 25 May 2025
/* CSS placed here will be applied to all skins */
.card-carousel {
display: flex;
overflow-x: auto;
gap: 1rem;
padding: 1rem;
}
.card-carousel::-webkit-scrollbar {
height: 6px;
}
.card-carousel::-webkit-scrollbar-thumb {
background: #999;
border-radius: 3px;
}
.card {
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem; /* or adjust spacing between elements */
border: 1px solid #ccc;
border-radius: 6px;
overflow: hidden;
background-color: #fff;
width: 200px; /* or your desired width */
}
.image-wrapper {
padding: 0;
margin: 0;
line-height: 0; /* removes spacing from inline image rendering */
}
.image-wrapper img {
max-width: 100%;
height: auto;
display: block;
}
.no-display {
display: none;
}