refactor: move website files to the root level
This commit is contained in:
parent
c2887ecbc5
commit
2cbbfd60ff
590 changed files with 0 additions and 4484 deletions
13
assets/tailwindcss/colours.cjs
Normal file
13
assets/tailwindcss/colours.cjs
Normal file
|
@ -0,0 +1,13 @@
|
|||
let colours = require('tailwindcss/colors')
|
||||
|
||||
module.exports = {
|
||||
black: '#000',
|
||||
blue: {
|
||||
primary: '#24608A',
|
||||
},
|
||||
current: 'currentColor',
|
||||
grey: colours.stone,
|
||||
inherit: 'inherit',
|
||||
transparent: 'transparent',
|
||||
white: '#fff'
|
||||
}
|
9
assets/tailwindcss/plugins/focus-visible.cjs
Normal file
9
assets/tailwindcss/plugins/focus-visible.cjs
Normal file
|
@ -0,0 +1,9 @@
|
|||
const plugin = require('tailwindcss/plugin')
|
||||
|
||||
module.exports = plugin(function({ addVariant, e }) {
|
||||
addVariant('focus-visible', ({ modifySelectors, separator }) => {
|
||||
modifySelectors(({ className }) => {
|
||||
return `.${e(`focus-visible${separator}${className}`)}[data-focus-visible-added]`
|
||||
})
|
||||
})
|
||||
})
|
32
assets/tailwindcss/safelist-classes.txt
Normal file
32
assets/tailwindcss/safelist-classes.txt
Normal file
|
@ -0,0 +1,32 @@
|
|||
bg-blue-600
|
||||
bg-grey-200
|
||||
block
|
||||
block-opdavies-branding
|
||||
border
|
||||
border-grey
|
||||
border-l-0
|
||||
flex
|
||||
flex-col
|
||||
flex-none
|
||||
italic
|
||||
my-auto
|
||||
p-3
|
||||
pl-5
|
||||
pr-6
|
||||
py-3
|
||||
rounded-full
|
||||
rounded-l-full
|
||||
rounded-r-full
|
||||
sm:flex-row
|
||||
sm:space-x-4
|
||||
sm:space-y-0
|
||||
space-x-3
|
||||
space-y-3
|
||||
space-y-4
|
||||
text-center
|
||||
text-sm
|
||||
text-white
|
||||
w-16
|
||||
w-32
|
||||
w-auto
|
||||
w-full
|
Loading…
Add table
Add a link
Reference in a new issue