Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions web/lib/opal/src/layouts/sidebar/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
--------------------------------------------------------------------------- */

.opal-sidebar-header {
@apply flex flex-col gap-4 pb-2;
@apply flex flex-col gap-4;
}

.opal-sidebar-header__topbar {
Expand Down Expand Up @@ -152,7 +152,7 @@
}

.opal-sidebar-body__content {
@apply flex-1 flex flex-col px-2 gap-2;
@apply flex-1 flex flex-col px-2;
Comment thread
raunakab marked this conversation as resolved.
Comment thread
raunakab marked this conversation as resolved.
}
.opal-sidebar-root__inner[data-folded="true"] .opal-sidebar-body__content {
@apply hidden;
Expand All @@ -167,9 +167,9 @@
--------------------------------------------------------------------------- */

.opal-sidebar-section__header {
@apply pl-2 pb-1 pt-2 flex flex-row justify-between items-center;
@apply pt-3 pl-2 pr-1 flex flex-row justify-between items-center;
}

.opal-sidebar-section__title {
@apply flex p-0.5;
@apply flex px-0.5 py-1.5;
}
2 changes: 1 addition & 1 deletion web/src/sections/sidebar/AppSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ export default function AppSidebar() {
<OpalButton
icon={SvgFolderPlus}
prominence="tertiary"
size="sm"
size="md"
tooltip="New Project"
onClick={() => createProjectModal.toggle(true)}
/>
Expand Down
Loading