Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ sold_amount=S\u1ED1 l\u01B0\u1EE3ng b\u00E1n
store=C\u1EEDa h\u00E0ng
author=T\u00E1c gi\u1EA3
view_detail=Xem chi ti\u1EBFt

books_in_series=S\u00E1ch trong b\u1ED9
you_may_also_like=C\u00F3 th\u1EC3 b\u1EA1n c\u0169ng th\u00EDch
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@
padding: 12px;
border-radius: 12px;
border: 1px solid #e2e8f0;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}


.book-gallery-main {
width: 100%;
height: 400px;
Expand Down Expand Up @@ -78,16 +77,19 @@
display: block;
}

.book-gallery-prev, .book-gallery-next {
.book-gallery-prev,
.book-gallery-next {
color: #1e293b;
background: rgba(255,255,255,0.8);
background: rgba(255, 255, 255, 0.8);
width: 32px;
height: 32px;
border-radius: 50%;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(2px);
}
.book-gallery-prev:after, .book-gallery-next:after {

.book-gallery-prev:after,
.book-gallery-next:after {
font-size: 14px;
font-weight: bold;
}
Expand All @@ -97,6 +99,7 @@
.book-gallery-main {
height: 300px;
}

.book-gallery-thumbs .swiper-slide {
height: 60px !important;
}
Expand Down Expand Up @@ -202,6 +205,7 @@
flex: 1 1 200px;
}
}

.book-authors {
margin-top: 20px;
display: flex;
Expand Down Expand Up @@ -306,3 +310,38 @@
margin-top: 2px;
}

html,
body {
overflow-x: clip !important;
overflow-y: visible !important;
}

.book-details,
.container,
.main-content-wrapper {
overflow: visible !important;
}

@media (min-width: 992px) {
.sticky-sidebar {
position: -webkit-sticky;
position: sticky;
top: 20px;
z-index: 10;
align-self: flex-start;

height: auto;
width: 100%;
}
}

.book-details-description {
position: relative;
}

.description-body {
height: auto;
mask-image: none;
-webkit-mask-image: none;
overflow: visible;
}
Loading