File size: 780 Bytes
82b391b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.stop-generating {
	position: absolute;
	bottom: 118px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000000;
}

.stop-generating button {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background-color: var(--blur-bg);
	border-radius: var(--border-radius-1);
	border: 1px solid var(--blur-border);
	padding: 10px 15px;
	color: var(--colour-3);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	animation: show_popup 0.4s;
}

@keyframes show_popup {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
}

@keyframes hide_popup {
	to {
		opacity: 0;
		transform: translateY(10px);
	}
}

.stop-generating-hiding button {
	animation: hide_popup 0.4s;
}

.stop-generating-hidden button {
	display: none;
}