-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: entity list view should show footer when content in side bar and…
… table is not scrollable (#144)
- Loading branch information
Fran McDade
authored and
Fran McDade
committed
Jul 19, 2024
1 parent
375e61e
commit 3ec2a64
Showing
2 changed files
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
import styled from "@emotion/styled"; | ||
import { smokeMain } from "../../../../styles/common/mixins/colors"; | ||
|
||
export const Sidebar = styled.div` | ||
align-self: stretch; | ||
border-right: 1px solid ${({ theme }) => theme.palette.smoke.main}; | ||
border-right: 1px solid ${smokeMain}; | ||
box-sizing: content-box; | ||
width: 264px; | ||
`; |