Skip to content

Commit

Permalink
Updated CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
kushchoudhary98 committed Feb 2, 2024
1 parent 28ec38f commit 703a147
Showing 1 changed file with 9 additions and 26 deletions.
35 changes: 9 additions & 26 deletions home.css
Original file line number Diff line number Diff line change
Expand Up @@ -240,30 +240,7 @@ main::-webkit-scrollbar{
transition: all;
transition-duration: 0.2s;
}
.swipe-pre {
position: absolute;
left: 0;
background: linear-gradient(90deg, #0F1114ff, #00000000);
}
.swipe-pre button {
background: none;
border: none;
height: 61px;
width: 50px;
color: white;
}
.swipe-next {
position: absolute;
right: 0;
background: linear-gradient(90deg, #00000000, #0F1114ff);
}
.swipe-next button {
background: none;
border: none;
height: 61px;
width: 50px;
color: white;
}

.swipe-contents{
padding-right: 10px;
min-width: 150px;
Expand All @@ -273,7 +250,7 @@ main::-webkit-scrollbar{
display: flex;
flex-direction: row;
align-items: center;
overflow: scroll;
overflow-x: scroll;
}
.swipe-contents::-webkit-scrollbar{
display: none;
Expand All @@ -285,13 +262,19 @@ main::-webkit-scrollbar{
min-height: 180px;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s;
}
.main-body-content div img:hover {
transform: scale(1.04);
}
.main-body-content #content{
display: flex;
flex-direction: row;
align-items: center;
overflow-y: scroll;
padding-right: 10px;
gap: 10px
gap: 10px;
height: 280px;
}
.main-body-content #content::-webkit-scrollbar {
display: none;
Expand Down

0 comments on commit 703a147

Please sign in to comment.