File size: 754 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.performance-profiler-llm-message {
	box-sizing: border-box;
	display: flex;
	padding: 16px;
	align-items: center;
	align-self: stretch;
	justify-content: space-between;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%), linear-gradient(90deg, #4458e4 0%, #069e08 100%);
	/* stylelint-disable-next-line scales/radii */
	border-radius: 6px;

	color: #000;
	font-family: "SF Pro Text", $sans;
	font-size: $font-body-small;
	line-height: 20px;
	flex-wrap: wrap;
	gap: 10px;

	.content {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.rotate {
		animation: rotation 3s infinite linear;
	}

	@keyframes rotation {
		from {
			transform: rotate(0deg);
		}
		to {
			transform: rotate(360deg);
		}
	}
}