classname move to extend object
This commit is contained in:
parent
8ca2a931ec
commit
e2e9d9736f
12
presets.js
vendored
12
presets.js
vendored
@ -226,12 +226,6 @@ module.exports = {
|
|||||||
'spacing': 'margin, padding',
|
'spacing': 'margin, padding',
|
||||||
'visible': 'visible, opacity',
|
'visible': 'visible, opacity',
|
||||||
'backgroundSize': 'background-size'
|
'backgroundSize': 'background-size'
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
appearance: ['hover', 'focus'],
|
|
||||||
container: {
|
|
||||||
center: true,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
backgroundSize: {
|
backgroundSize: {
|
||||||
@ -244,6 +238,12 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
appearance: ['hover', 'focus'],
|
||||||
|
container: {
|
||||||
|
center: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
variants: {
|
variants: {
|
||||||
transitionProperty: ['responsive', 'motion-safe', 'motion-reduce'],
|
transitionProperty: ['responsive', 'motion-safe', 'motion-reduce'],
|
||||||
float: ['responsive', 'direction'],
|
float: ['responsive', 'direction'],
|
||||||
|
36
public/css/app.css
vendored
36
public/css/app.css
vendored
@ -28906,6 +28906,15 @@ input[type="date"]::-webkit-inner-spin-button,
|
|||||||
-webkit-box-decoration-break: clone;
|
-webkit-box-decoration-break: clone;
|
||||||
box-decoration-break: clone;
|
box-decoration-break: clone;
|
||||||
}
|
}
|
||||||
|
.bg-auto{
|
||||||
|
background-size: auto;
|
||||||
|
}
|
||||||
|
.bg-cover{
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
.bg-contain{
|
||||||
|
background-size: contain;
|
||||||
|
}
|
||||||
.bg-0-2{
|
.bg-0-2{
|
||||||
background-size: 0 2px;
|
background-size: 0 2px;
|
||||||
}
|
}
|
||||||
@ -28934,6 +28943,33 @@ input[type="date"]::-webkit-inner-spin-button,
|
|||||||
-webkit-background-clip: text;
|
-webkit-background-clip: text;
|
||||||
background-clip: text;
|
background-clip: text;
|
||||||
}
|
}
|
||||||
|
.bg-bottom{
|
||||||
|
background-position: bottom;
|
||||||
|
}
|
||||||
|
.bg-center{
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
.bg-left{
|
||||||
|
background-position: left;
|
||||||
|
}
|
||||||
|
.bg-left-bottom{
|
||||||
|
background-position: left bottom;
|
||||||
|
}
|
||||||
|
.bg-left-top{
|
||||||
|
background-position: left top;
|
||||||
|
}
|
||||||
|
.bg-right{
|
||||||
|
background-position: right;
|
||||||
|
}
|
||||||
|
.bg-right-bottom{
|
||||||
|
background-position: right bottom;
|
||||||
|
}
|
||||||
|
.bg-right-top{
|
||||||
|
background-position: right top;
|
||||||
|
}
|
||||||
|
.bg-top{
|
||||||
|
background-position: top;
|
||||||
|
}
|
||||||
.bg-0-full{
|
.bg-0-full{
|
||||||
background-position: 0 100%;
|
background-position: 0 100%;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user