Skip to content
Open
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: 2 additions & 6 deletions src/people/widgetViews/workspace/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -999,12 +999,8 @@ export const BudgetButton = styled.button`

export const SettingsContainer = styled.div`
padding: 20px;
max-width: 100%;
width: clamp(100%, 75vw, 1600px);
margin: auto;

@media (min-width: 1200px) {
max-width: 1200px;
}
`;

export const Section = styled.div`
Expand Down Expand Up @@ -1105,7 +1101,7 @@ export const ToolsSection = styled(Section)`
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 16px;
margin-bottom: 5%;
margin-bottom: clamp(50px, 8vh, 120px);
`;

export const ToolButton = styled(Button)`
Expand Down
Loading