fix box shadow clipping

This commit is contained in:
2023-02-26 20:01:52 +10:00
parent 3231063bc2
commit 2b298b7c76
2 changed files with 4 additions and 4 deletions

View File

@@ -87,11 +87,10 @@ onMounted(() => {
background-color: #fff;
padding: map-get($spacer, 2) map-get($spacer, 2) map-get($spacer, 2)
map-get($spacer, 2);
border: 1px solid #fff;
border-radius: 12px;
border: 1px solid $border-color;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
margin-bottom: 1rem;
border: 1px solid $border-color;
transition: opacity 0.2s ease-in, margin 0.2s ease-in;
.sm-toast-inner {

View File

@@ -21,10 +21,11 @@ const toastStore = useToastStore();
.sm-toast-container {
position: fixed;
height: 2px;
top: 4rem;
right: 1rem;
top: 3.5rem;
right: 0.75rem;
height: 100%;
z-index: 3000;
padding: 10px;
overflow: hidden;
}
</style>