Skip to content

Commit

Permalink
[web] Add space actions table
Browse files Browse the repository at this point in the history
  • Loading branch information
joseivanlopez committed Feb 14, 2024
1 parent fd42444 commit 421ff9d
Show file tree
Hide file tree
Showing 3 changed files with 380 additions and 77 deletions.
4 changes: 4 additions & 0 deletions web/src/assets/styles/utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
font-weight: bold;
}

.fs-small {
font-size: var(--fs-small);
}

// Utility classes for sizing icons
.icon-xxxs {
block-size: var(--icon-size-xxxs);
Expand Down
3 changes: 2 additions & 1 deletion web/src/components/storage/ProposalPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,12 @@ export default function ProposalPage() {
encryptionMethods={state.encryptionMethods}
settings={state.settings}
onChange={changeSettings}
isLoading={state.loading}
isLoading={!state.settings}
/>
<ProposalSpacePolicySection
settings={state.settings}
onChange={changeSettings}
isLoading={!state.settings}
/>
<ProposalActionsSection
actions={state.actions}
Expand Down
Loading

0 comments on commit 421ff9d

Please sign in to comment.