32 lines
460 B
CSS
32 lines
460 B
CSS
/**
|
|
* Component classes registered by plugins.
|
|
*
|
|
*/
|
|
|
|
@import 'print.css';
|
|
|
|
@import 'tables.css';
|
|
|
|
@import 'prism.css';
|
|
|
|
@tailwind components;
|
|
|
|
@layer components {
|
|
.bullet {
|
|
position: relative;
|
|
padding-left: 30px;
|
|
}
|
|
|
|
.bullet::before {
|
|
content: '';
|
|
position: absolute;
|
|
transform: translateY(50%);
|
|
left: 0;
|
|
display: inline-block;
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: #4d53ff;
|
|
border-radius: 50%;
|
|
}
|
|
}
|