-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyles.css
More file actions
39 lines (31 loc) · 872 Bytes
/
styles.css
File metadata and controls
39 lines (31 loc) · 872 Bytes
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
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
:root {
--gemmy-size: 80px;
}
.gemmy-container {
position: fixed;
bottom: 30px;
right: 30px;
display: flex;
flex-direction: column;
align-items: flex-end;
}
.gemmy-container img {
width: var(--gemmy-size);
height: var(--gemmy-size);
border-radius: var(--gemmy-size);
}
.gemmy-container[aria-label]::before {
--background-modifier-message: #FFFFCB;
content: attr(aria-label);
color: #202020;
font-size: var(--font-ui-medium);
border-radius: 20px;
padding: var(--size-4-3) var(--size-4-6);
width: 150px;
background: var(--background-modifier-message);
}