mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 13:10:21 +08:00
39 lines
913 B
HTML
39 lines
913 B
HTML
<div class="toast">
|
|
|
|
<div class="toast-content">
|
|
This is a toast message.
|
|
</div>
|
|
<div class="toast-icon">
|
|
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M0 0h24v24H0z" fill="none"></path>
|
|
<path d="M15.795 8.342l-5.909 9.545a1 1 0 0 1-1.628 0l-3.182-4.909a1 1 0 0 1 1.629-1.165l2.556 3.953L14.165 7.51a1 1 0 0 1 1.63 1.165z"></path>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<style>
|
|
/* From Uiverse.io by PriyanshuGupta28 - Tags: alert, card, toast, aleartToast */
|
|
.toast {
|
|
bottom: 20px;
|
|
right: 20px;
|
|
background-color: #333;
|
|
color: #fff;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.toast-icon svg {
|
|
width: 30px;
|
|
height: 20px;
|
|
fill: #fff;
|
|
}
|
|
|
|
.toast-content {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
</style>
|