pianello-api/resources/css/components/_toastify.css
Ale Gallo 74c4b1d3f4 Committing laraver (part 2)
committing part of the laravel system with templating files and components
2023-11-10 15:58:25 +01:00

29 lines
635 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.toastify {
background: none;
box-shadow: none;
padding: 0;
color: theme("colors.slate.700");
max-width: calc(100% - 30px);
@media screen(md) {
max-width: none;
}
.toast-close {
color: transparent;
position: absolute;
opacity: 1;
top: 0;
bottom: 0;
right: 0;
padding-right: theme("spacing.3");
display: flex;
align-items: center;
&:before {
content: "×";
display: block;
color: theme("colors.slate.500");
font-size: theme("fontSize.3xl");
margin-top: calc(theme("spacing.[1.5]") * -1);
font-weight: theme("fontWeight.light");
}
}
}