You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
415 B
24 lines
415 B
nav {
|
|
@apply mb-4 text-red-300 bg-gradient-to-r from-color-primary to-color-secondary;
|
|
|
|
p {
|
|
background-color: aqua;
|
|
}
|
|
|
|
|
|
p:hover {
|
|
background-color: blueviolet;
|
|
}
|
|
|
|
&:hover p {
|
|
background-color: green;
|
|
}
|
|
|
|
span {
|
|
@apply bg-gradient-to-r from-color-primary to-color-secondary text-black sm:rounded-t-lg p-4;
|
|
}
|
|
}
|
|
|
|
p {
|
|
background-color: yellow;
|
|
}
|