-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
107 lines (100 loc) · 2.08 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: Pretendard;
src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard-dynamic-subset.css');
}
@layer components {
.container {
@apply max-w-[1256px] m-auto;
}
.tag {
@apply text-white text-xs p-1 pl-2 pr-2 rounded-md inline;
}
.pageNumBtn {
@apply text-center leading-7 border-[1px] border-[#b6bdc7] text-primary text-sm w-8 h-8;
}
.isActive {
@apply text-gray-800 border-gray-800 border-b-4;
}
.reviewSortItem {
@apply text-darkgray;
}
.isSort {
@apply font-bold text-primary;
}
/* calendar */
.react-datepicker {
@apply border-0 !important;
}
.react-datepicker__month-container {
@apply w-full !important;
}
.react-datepicker__header {
@apply border-0 bg-white !important;
}
.react-datepicker__day--selected {
@apply bg-brand !important;
}
.swiper-button-next {
@apply bg-black !important;
}
.cardSlideBox {
.swiper-button-next {
color: #ff097f;
font-weight: bold;
top: 45%;
}
.swiper-button-prev {
color: #ff097f;
font-weight: bold;
top: 45%;
}
}
.bannerSlideBox {
.swiper-pagination {
text-align: left;
bottom: 30px;
left: 40px;
}
}
.calendar {
.react-datepicker__day--selected {
background-color: #ff097f;
}
.react-datepicker__header {
background-color: #fff;
border-bottom: 0;
margin-top: -7px;
}
.react-datepicker__current-month {
margin-bottom: 8px;
}
.react-datepicker__day-names {
background-color: #f2f2f2;
border-radius: 20px;
.react-datepicker__day-name {
height: 1.2rem;
line-height: 1.2rem;
}
}
}
.reviewListWrap {
.pagination {
display: flex;
align-items: center;
justify-content: center;
padding: 4em 0;
.previous,
.next {
margin: 0 15px;
}
svg {
display: inline-block;
height: 2em;
width: 2em;
}
}
}
}