27 lines
411 B
CSS
27 lines
411 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
* {
|
|
font-family: theme("fontFamily.body");
|
|
color: theme("colors.text");
|
|
}
|
|
|
|
body {
|
|
background-color: theme("colors.background");
|
|
}
|
|
|
|
.main {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.pic-outer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transition: transform 1s linear;
|
|
}
|