18 lines
234 B
CSS
18 lines
234 B
CSS
.slider {
|
|
width: fit-content;
|
|
height: fit-content;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 16px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.container::-webkit-scrollbar {
|
|
display: none;
|
|
}
|