Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoperra committed Oct 27, 2024
1 parent 577bc05 commit 28c462b
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 224 deletions.
13 changes: 7 additions & 6 deletions packages/app/src/components/Editor/Layout/Panel/Form/Form.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@ import {style} from '@vanilla-extract/css';
import {appTheme} from '#ui/theme.css';
import {recipe} from '@vanilla-extract/recipes';

// TODO: remove important, fix layer
export const inlineInputRoot = style({
display: 'flex',
alignItems: 'center',
flexDirection: 'row',
width: '100%',
gap: appTheme.spacing['3'],
display: 'flex !important',
alignItems: 'center !important',
flexDirection: 'row !important',
width: '100% !important',
gap: `${appTheme.spacing['3']} !important`,
});

export const inlineInputLabel = style({
flex: '1 0 85px',
flex: '1 0 85px !important',
});

export const panelForm = recipe({
Expand Down
46 changes: 23 additions & 23 deletions packages/app/src/global-codeui.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@ globalStyle('[data-cui-theme=dark] html, body', {
color: themeVars.foreground,
});

globalStyle('::-webkit-scrollbar', {
width: '18px',
height: '18px',
});
// globalStyle('::-webkit-scrollbar', {
// width: '18px',
// height: '18px',
// });

globalStyle('::-webkit-scrollbar-track', {
backgroundColor: 'transparent',
});
// globalStyle('::-webkit-scrollbar-track', {
// backgroundColor: 'transparent',
// });

globalStyle('::-webkit-scrollbar-corner', {
backgroundColor: '#505050',
borderRadius: '16px',
backgroundClip: 'content-box',
border: '4px solid transparent',
});
// globalStyle('::-webkit-scrollbar-corner', {
// backgroundColor: '#505050',
// borderRadius: '16px',
// backgroundClip: 'content-box',
// border: '4px solid transparent',
// });

globalStyle('::-webkit-scrollbar-thumb', {
backgroundColor: '#505050',
borderRadius: '9999px',
border: '6px solid transparent',
backgroundClip: 'content-box',
transition: 'background-color .2s',
});
// globalStyle('::-webkit-scrollbar-thumb', {
// backgroundColor: '#505050',
// borderRadius: '9999px',
// border: '6px solid transparent',
// backgroundClip: 'content-box',
// transition: 'background-color .2s',
// });

globalStyle('::-webkit-scrollbar-thumb:hover', {
backgroundColor: '#333333',
});
// globalStyle('::-webkit-scrollbar-thumb:hover', {
// backgroundColor: '#333333',
// });
Loading

0 comments on commit 28c462b

Please sign in to comment.