-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
70 lines (69 loc) · 1.22 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
@tailwind base;
@tailwind components;
@tailwind utilities;
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 1px rgb(255, 255, 255);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgb(215, 210, 210);
border-radius: 10px;
}
@media only screen and (max-width: 360px) {
.mobile-header {
width: 100vw;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.mobile-cart {
left: -100px;
}
.mobile-categories {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.mobile-categories-h1 {
margin-left: 97px;
}
.mobile-category-formal {
height: 12rem;
width: 25rem;
}
.mobile-category {
height: 12rem;
width: 12rem;
}
.mobile-category-font {
font-size: 20px;
}
.mobile-login {
display: flex;
flex-direction: column;
align-items: center;
}
.mobile-login-input {
width: 18rem;
}
.mobile-login-signup {
display: none;
}
.mobile-signup {
display: inline;
}
.mobile-card{
/* display: none; */
display: flex;
flex-direction: row;
justify-content: space-between;
width: 90%;
}
.mobile-card-image{
height: 20px;
width: 20px;
}
}