Lamassu admin server initial commit
This commit is contained in:
parent
d083ae5a40
commit
fc1951c4b2
158 changed files with 28462 additions and 1606 deletions
43
new-lamassu-admin/src/styling/global/index.js
Normal file
43
new-lamassu-admin/src/styling/global/index.js
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
import { mainWidth } from '../variables'
|
||||
|
||||
import fonts from './fonts'
|
||||
|
||||
const fill = '100%'
|
||||
|
||||
export default {
|
||||
'@global': {
|
||||
...fonts,
|
||||
'#root': {
|
||||
width: fill,
|
||||
minHeight: fill
|
||||
},
|
||||
html: {
|
||||
height: fill
|
||||
},
|
||||
body: {
|
||||
width: mainWidth,
|
||||
display: 'flex',
|
||||
minHeight: fill,
|
||||
'@media screen and (min-width: 1200px)': {
|
||||
width: 'auto'
|
||||
}
|
||||
},
|
||||
[`a::-moz-focus-inner,
|
||||
'input[type="submit"]::-moz-focus-inner,
|
||||
input[type="button"]::-moz-focus-inner`]: {
|
||||
border: 0
|
||||
},
|
||||
[`a::-moz-focus-inner,
|
||||
input[type="submit"]::-moz-focus-inner,
|
||||
input[type="button"]::-moz-focus-inner`]: {
|
||||
border: 0
|
||||
},
|
||||
[`a,
|
||||
a:visited,
|
||||
a:focus,
|
||||
a:active,
|
||||
a:hover`]: {
|
||||
outline: '0 none'
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue