feat: change selectFolderModal to a section inside repacksModal

This commit is contained in:
Hydra 2024-04-21 00:59:52 -03:00 committed by José Luís
parent 521f23d410
commit 95a26c805f
8 changed files with 101 additions and 158 deletions

View file

@ -16,3 +16,23 @@ export const repackButton = style({
color: vars.color.bodyText,
padding: `${SPACING_UNIT * 2}px`,
});
export const container = style({
width: "100%",
display: "flex",
flexDirection: "column",
gap: `${SPACING_UNIT * 2}px`,
marginBottom: SPACING_UNIT * 2,
paddingBottom: SPACING_UNIT * 2,
borderBottom: `solid 1px ${vars.color.borderColor}`,
});
export const downloadsPathField = style({
display: "flex",
gap: `${SPACING_UNIT * 2}px`,
});
export const hintText = style({
fontSize: 12,
color: vars.color.bodyText,
});