-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (44 loc) · 1.06 KB
/
style.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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
margin: 0;
padding: 0;
}
body {
width: 380px;
height: 500px;
font-family: "Poppins", sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
}
}
@layer utilities {
.truncate-custom {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
}
.search input::-webkit-search-cancel-button {
-webkit-appearance: none;
height: 1rem;
width: 1rem;
background: url("assets/icons/x-bold.svg") no-repeat 50% 50%;
background-size: contain;
transition: opacity 0.2s;
}
.search input::-webkit-search-cancel-button:hover {
opacity: 0.7;
cursor: pointer;
}
.ReactModal__Content--after-open {
box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.45);
}
#plasmo-shadow-container {
z-index: 0 !important;
}