CSS writing and tweaks

This commit is contained in:
Oliver-Akins 2023-11-26 01:30:45 -07:00
parent 32bc59088b
commit 98af0683c3
13 changed files with 281 additions and 117 deletions

View file

@ -0,0 +1,17 @@
@mixin bp-m {
@container (max-width: 700px) {
@content
};
};
@mixin bp-s {
@container (max-width: 550px) {
@content
};
};
@mixin bp-xs {
@container (max-width: 400px) {
@content
};
};