1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-19 01:25:51 +07:00

refactor: remove scss from PackageList component

This commit is contained in:
Griffithtp
2019-07-05 22:06:33 +01:00
parent 0c4ebbffa8
commit a49780f5f0
3 changed files with 18 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
import { css } from 'emotion';
import { fontWeight, fontSize } from '../../utils/styles/sizes';
export const listTitle = css({
fontWeight: fontWeight.regular,
fontSize: fontSize.xl,
margin: `0 0 10px 0`,
});
export const pkgContainer = css`
margin: 0;
padding: 0;
& .listTitle {
${listTitle}
}
`;