new Fixes

- Box Header should be bold
- Buttons Hover/Active forms not correct
- Fixed one of the old Checkbox bug
- Footer Made with should be bold
- Sidebar fixes

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-12-02 00:07:27 +01:00
parent f71223b1dc
commit 3495142453
12 changed files with 15246 additions and 5153 deletions

View File

@@ -93,7 +93,6 @@ $backColor = #757575
width 24px
height 14px
border-radius 20px
top 50%
margin-right 10px
box-shadow none
background rgba($darkGrayLight, .3)

View File

@@ -1,10 +1,10 @@
import { Meta } from '@storybook/react/types-6-0'
import React from 'react'
import Checkbox from '.'
import CheckboxReact from '.'
export default {
title: 'DZEIO/Checkbox',
component: Checkbox
component: CheckboxReact
} as Meta
export const Checkbox = (args: any) => <Checkbox {...args} />
export const Checkbox = (args: any) => <CheckboxReact {...args} />