Skip to content

Commit e8281e0

Browse files
?
1 parent f48304c commit e8281e0

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

src/public/css/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/public/sass/style.scss

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,33 @@
2020
bottom: 0;
2121
background: var(--bg-color);
2222
}
23+
#exit-iframe {
24+
position: absolute;
25+
top: 30px;
26+
left: 30px;
27+
width: 50px;
28+
height: 50px;
29+
border-radius: 50%;
30+
background: var(--text-bg-color);
31+
border: none;
32+
opacity: 0.5;
33+
z-index: 10001;
34+
&:hover {
35+
cursor: pointer;
36+
opacity: 1;
37+
}
38+
&:active {
39+
opacity: 0.5;
40+
}
41+
i {
42+
font-size: 30px;
43+
color: var(--text-color);
44+
position: absolute;
45+
top: 50%;
46+
left: 50%;
47+
transform: translate(-50%, -50%);
48+
}
49+
}
2350
#add-tab {
2451
color: var(--text-color);
2552
width: 16px;

0 commit comments

Comments
 (0)