Skip to content

Commit e40cbc8

Browse files
committed
chore(lab)
1 parent 1446560 commit e40cbc8

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

src/data/labs/css-toast/style.css

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,20 @@
1717
background: var(--bg-color);
1818
border: 1px solid var(--border-color);
1919
border-radius: 0.5rem;
20-
padding: 0.5rem 1rem;
20+
padding: 0.4rem 1rem;
2121
cursor: pointer;
2222
color: var(--font-color);
23-
font-size: 0.875rem;
23+
font-size: 0.75rem;
2424
border: 1px solid var(--border-color);
25-
transition: .3s ease transform;
25+
box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 1),
26+
0 3px 10px rgba(255, 255, 255, 0.3);
27+
transition: .3s ease;
28+
transition-property: box-shadow, transform;
2629

27-
&:active{
30+
&:active {
2831
transform: scale(0.98);
32+
box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 1),
33+
0 3px 10px rgba(255, 255, 255, 0);
2934
}
3035
}
3136

src/data/labs/data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"name": "css-toast",
4848
"inDevelopment": false,
4949
"en_title": "CSS Toast",
50-
"origin_url": "",
50+
"origin_url": "https://sonner.emilkowal.ski/",
5151
"title": "css toast",
5252
"tags": [
5353
"CSS"

0 commit comments

Comments
 (0)