aboutsummaryrefslogtreecommitdiff
path: root/src/app/anime/recent/recent.module.css
blob: 7805d52110eb25f8d32cbe0fd3e3ca6bb4fcc276 (plain) (blame)
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
.RecentText {
	color: #FFB996;
	display: flex;
	align-items: center;
}

.RecentText p {
	font-size: 26px;
	margin: 5px;
	font-family: "Quicksand";
}

.RecentText span {
	margin-top: 6px;
}

.Recent {
	display: flex;
	overflow-x: auto;
}

.Recent::-webkit-scrollbar {
	height: 5px;
}

.Recent::-webkit-scrollbar-thumb {
	background-color: #444444;
	border-radius: 5px;
}

.RecentEntries {
	margin: 7px;
}

.RecentEntries p {
	text-align: center;
	margin: 5px auto;
	max-height: 70px;
	overflow-y: auto;
}

.RecentEntries p::-webkit-scrollbar {
	width: 5px;
}

.Recent p::-webkit-scrollbar-thumb {
	background-color: #444444;
	border-radius: 5px;
}

.RecentImage {
	border-radius: 5px;
	aspect-ratio: auto;
}