Buckets:
| [data-component="toast-v2-region"] { | |
| position: fixed; | |
| bottom: 48px; | |
| right: 32px; | |
| z-index: 1000; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 12px; | |
| max-width: min(320px, calc(100vw - 64px)); | |
| max-height: none; | |
| width: 100%; | |
| overflow: visible; | |
| pointer-events: none; | |
| [data-slot="toast-v2-list"] { | |
| display: flex; | |
| flex-direction: column; | |
| gap: 12px; | |
| list-style: none; | |
| margin: 0; | |
| padding: 0; | |
| max-height: none; | |
| overflow-y: visible; | |
| overflow-x: visible; | |
| scrollbar-width: none; | |
| &::-webkit-scrollbar { | |
| display: none; | |
| } | |
| } | |
| } | |
| [data-component="toast-v2"] { | |
| position: relative; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 12px; | |
| width: 320px; | |
| padding: 12px; | |
| max-height: min(420px, calc(100dvh - 96px)); | |
| overflow: hidden; | |
| pointer-events: auto; | |
| transition: transform 140ms ease-out; | |
| border-radius: 8px; | |
| color: var(--v2-text-text-base); | |
| background: var(--v2-background-bg-layer-01); | |
| box-shadow: var(--v2-elevation-floating); | |
| &[data-opened] { | |
| animation: toastV2PopIn 140ms ease-out; | |
| } | |
| &[data-closed] { | |
| animation: toastV2PopOut 100ms ease-in forwards; | |
| } | |
| [data-slot="toast-v2-header"] { | |
| display: flex; | |
| align-items: flex-start; | |
| gap: 12px; | |
| width: 100%; | |
| } | |
| [data-slot="toast-v2-icon"] { | |
| flex-shrink: 0; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| width: 16px; | |
| height: 20px; | |
| min-width: 16px; | |
| min-height: 20px; | |
| color: var(--v2-icon-icon-base); | |
| [data-component="icon"] { | |
| color: var(--v2-icon-icon-base); | |
| width: 16px; | |
| height: 16px; | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| > * { | |
| width: 16px; | |
| height: 16px; | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| flex-shrink: 0; | |
| } | |
| svg { | |
| width: 16px; | |
| height: 16px; | |
| display: block; | |
| flex-shrink: 0; | |
| } | |
| } | |
| [data-slot="toast-v2-content"] { | |
| flex: 1; | |
| display: flex; | |
| flex-direction: column; | |
| gap: 4px; | |
| min-height: 0; | |
| min-width: 0; | |
| overflow: hidden; | |
| } | |
| [data-slot="toast-v2-title"] { | |
| color: var(--v2-text-text-base); | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| font-size: 13px; | |
| font-style: normal; | |
| font-weight: 530; | |
| line-height: 20px; | |
| letter-spacing: -0.04px; | |
| font-synthesis: none; | |
| margin: 0; | |
| } | |
| [data-slot="toast-v2-description"] { | |
| color: var(--v2-text-text-muted); | |
| text-wrap-style: pretty; | |
| overflow-wrap: anywhere; | |
| word-break: break-word; | |
| font-size: 13px; | |
| font-style: normal; | |
| font-weight: 440; | |
| line-height: 20px; | |
| letter-spacing: -0.04px; | |
| font-synthesis: none; | |
| margin: 0; | |
| } | |
| [data-slot="toast-v2-actions"] { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 8px; | |
| padding-left: 28px; | |
| } | |
| [data-slot="toast-v2-actions"] [data-component="button-v2"] { | |
| min-height: 24px; | |
| font-size: 13px; | |
| font-style: normal; | |
| font-weight: 530; | |
| line-height: 20px; | |
| letter-spacing: -0.04px; | |
| font-synthesis: none; | |
| } | |
| [data-slot="toast-v2-close-button"] { | |
| flex-shrink: 0; | |
| width: 20px; | |
| height: 20px; | |
| min-width: 20px; | |
| min-height: 20px; | |
| padding: 0; | |
| border: 0; | |
| border-radius: 4px; | |
| background: transparent; | |
| color: var(--v2-icon-icon-muted); | |
| cursor: pointer; | |
| display: inline-flex; | |
| align-items: center; | |
| justify-content: center; | |
| &:hover { | |
| background: var(--v2-overlay-simple-overlay-hover); | |
| color: var(--v2-icon-icon-base); | |
| } | |
| &:active { | |
| background: var(--v2-overlay-simple-overlay-pressed); | |
| } | |
| &:focus-visible { | |
| outline: 2px solid var(--v2-border-border-focus); | |
| outline-offset: 2px; | |
| } | |
| svg { | |
| width: 16px; | |
| height: 16px; | |
| display: block; | |
| } | |
| } | |
| } | |
| @keyframes toastV2PopIn { | |
| from { | |
| opacity: 0.8; | |
| transform: translateY(6px); | |
| } | |
| to { | |
| transform: translateY(0); | |
| opacity: 1; | |
| } | |
| } | |
| @keyframes toastV2PopOut { | |
| from { | |
| transform: translateY(0); | |
| opacity: 1; | |
| } | |
| to { | |
| transform: translateY(6px); | |
| opacity: 0.8; | |
| } | |
| } | |
Xet Storage Details
- Size:
- 4.21 kB
- Xet hash:
- 46607805c31ee55b2f98f0147e080634487880debda8e052f10a612785f22e04
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.