@use "@pythnetwork/component-library/theme"; .error { @include theme.max-width; display: flex; flex-flow: column nowrap; gap: theme.spacing(12); align-items: center; text-align: center; padding: theme.spacing(36) theme.spacing(0); .errorIcon { font-size: theme.spacing(20); height: theme.spacing(20); color: theme.color("states", "error", "color"); } .text { display: flex; flex-flow: column nowrap; gap: theme.spacing(4); align-items: center; .header { @include theme.text("5xl", "semibold"); color: theme.color("heading"); } .subheader { @include theme.text("xl", "light"); color: theme.color("heading"); } .details { @include theme.text("sm", "normal"); background: theme.color("background", "secondary"); border-radius: theme.border-radius("md"); padding: theme.spacing(4) theme.spacing(6); color: theme.color("paragraph"); margin-top: theme.spacing(2); } } }