Skip to content

Commit c0811dd

Browse files
committed
feat: update lingo widget styles
1 parent cfec75e commit c0811dd

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

cmp/compiler/src/widget/lingo-dev-widget.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,11 @@ class LingoDevWidget extends HTMLElement {
9898
align-items: center;
9999
gap: 8px;
100100
transition: all 0.2s ease-in-out;
101-
background-color: black;
102101
border-radius: 8px;
103102
padding: 8px 12px;
103+
background: rgba(0, 0, 0, 0.8);
104+
box-shadow: 0 0 0 1px #171717, inset 0 0 0 1px rgba(0, 0, 0, 0.24), 0px 16px 32px -8px rgba(0, 0, 0, 0.24);
105+
backdrop-filter: blur(48px);
104106
}
105107
106108
.logo {
@@ -179,11 +181,11 @@ class LingoDevWidget extends HTMLElement {
179181
<style>
180182
@keyframes moveDown {
181183
0%, 100% { transform: translateY(0); }
182-
50% { transform: translateY(8px); }
184+
50% { transform: translateY(12px); }
183185
}
184186
@keyframes moveUp {
185187
0%, 100% { transform: translateY(0); }
186-
50% { transform: translateY(-8px); }
188+
50% { transform: translateY(-12px); }
187189
}
188190
.bottom-part { animation: moveDown 1.5s ease-in-out infinite; transform-origin: center; }
189191
.top-part { animation: moveUp 1.5s ease-in-out infinite; transform-origin: center; }

0 commit comments

Comments
 (0)