Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: version 2025.1.18 #21

Merged
merged 1 commit into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "style-forge.patterns",
"version": "2025.1.8",
"version": "2025.1.18",
"description": "Style-Forge.Patterns - versatile CSS library with pre-defined classes for responsive, consistent user interfaces.",
"type": "module",
"main": "patterns.css",
Expand Down
4 changes: 2 additions & 2 deletions patterns.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/all.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@import 'base.css';
@import 'site.css';
@import 'media.css';
@import './base.css';
@import './site.css';
@import './media.css';
4 changes: 2 additions & 2 deletions src/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
'footer footer footer';
}

@media (max-width: 768px) {
@media only screen and (max-width: 1024px) {
.sf-pattern.area-menu {
grid-template-columns: 1fr auto;
grid-template-rows: auto 1fr;
Expand Down Expand Up @@ -167,7 +167,7 @@
}
}

@media (max-width: 480px) {
@media only screen and (max-width: 600px) {
.sf-pattern.area-aside {
grid-template-rows: 1fr auto;
grid-template-areas:
Expand Down
Loading