Skip to content

Commit dd5b5f5

Browse files
committed
chore: cleanup
1 parent 924fc9e commit dd5b5f5

3 files changed

Lines changed: 4 additions & 20 deletions

File tree

packages/app/src/pages/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2001,8 +2001,8 @@ export default function Layout(props: ParentProps) {
20012001
</DragDropProvider>
20022002
</div>
20032003
<div class="shrink-0 w-full pt-3 pb-3 flex flex-col items-center gap-2">
2004-
<Tooltip placement={sidebarProps.mobile ? "bottom" : "right"} value="Settings" class="hidden">
2005-
<IconButton disabled icon="settings-gear" variant="ghost" size="large" />
2004+
<Tooltip placement={sidebarProps.mobile ? "bottom" : "right"} value="Settings">
2005+
<IconButton icon="settings-gear" variant="ghost" size="large" onClick={openSettings} />
20062006
</Tooltip>
20072007
<Tooltip placement={sidebarProps.mobile ? "bottom" : "right"} value="Help">
20082008
<IconButton

packages/ui/src/components/select.css

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,7 @@
5353
background-color: var(--surface-raised-stronger-non-alpha);
5454
padding: 2px;
5555
box-shadow: var(--shadow-xs-border);
56-
z-index: 50;
57-
58-
&[data-closed] {
59-
animation: select-close 0.15s ease-out;
60-
}
56+
z-index: 60;
6157

6258
&[data-expanded] {
6359
animation: select-open 0.15s ease-out;
@@ -80,9 +76,6 @@
8076
}
8177
}
8278

83-
/* [data-slot="select-section"] { */
84-
/* } */
85-
8679
[data-slot="select-select-item"] {
8780
position: relative;
8881
display: flex;
@@ -142,13 +135,3 @@
142135
}
143136
}
144137

145-
@keyframes select-close {
146-
from {
147-
opacity: 1;
148-
transform: scale(1);
149-
}
150-
to {
151-
opacity: 0;
152-
transform: scale(0.95);
153-
}
154-
}

packages/ui/src/components/switch.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[data-component="switch"] {
2+
position: relative;
23
display: flex;
34
align-items: center;
45
gap: 8px;

0 commit comments

Comments
 (0)