Basic Cart functionality

Add test-api function for contact page
This commit is contained in:
Michał Gdula 2024-04-30 14:48:32 +01:00
parent e2e68ab1fb
commit b7bc7da366
8 changed files with 142 additions and 24 deletions

View file

@ -47,3 +47,23 @@
color: $color-error;
}
}
.form-message {
margin-bottom: $spacing-small;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
text-shadow: 0 1px 0.5px rgba(#000, 0.2);
border-radius: $border-radius-normal;
color: $color-on-background;
&.success {
color: $color-primary;
}
&.error {
color: $color-error;
}
}