1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- @layer components {
- }
- @layer utilities {
- }
- .layout-items-center {
- display: flex;
- align-items: center;
- }
- .layout-items-baseline {
- display: flex;
- align-items: baseline;
- }
- .layout-baseline-between {
- display: flex;
- align-items: baseline;
- justify-content: space-between;
- }
- .layout-center {
- display: flex;
- justify-content: center;
- }
- .layout-slide {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .layout-around {
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .layout-slide-wrap {
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- .layout-col-slide {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .layout-abs-center {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .layout-end {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .layout-col-center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .text-color{
- color: var(--text-color);
- }
|