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

3.2.0 #7

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8ddfc3f
[FEATURE] Add Stylelint config
deoostfrees Nov 10, 2023
7960dbc
[TASK] Add Stylelint packages/ Update packages
deoostfrees Nov 10, 2023
1470cf8
[TASK] Fix Stylelint issues
deoostfrees Nov 10, 2023
438cfdd
[TASK] Update dev dependencies
deoostfrees Nov 27, 2023
4a5ba3a
[TASK] Update/ remove dev dependencies, remove deprecated stylelint r…
deoostfrees Jan 12, 2024
b4a0c37
[TASK] Update dev dependencies
deoostfrees Jan 24, 2024
28d9154
[TASK] Update dev dependencies
deoostfrees Jan 26, 2024
e865a98
[TASK] Update dev dependencies
deoostfrees Feb 27, 2024
7a644dd
[TASK] Clean up
deoostfrees Mar 12, 2024
2641140
[TASK] Update dev dependencies
deoostfrees Mar 12, 2024
6865d77
[TASK] Update version for 3.2.0
deoostfrees Mar 12, 2024
9663d0c
[TASK] Update version for 3.2.0
deoostfrees Mar 28, 2024
a7743a0
[TASK] Update dev dependencies
deoostfrees Mar 28, 2024
2dc1e06
[TASK] Update year
deoostfrees Apr 7, 2024
c161e5d
[TASK] Update dev dependencies
deoostfrees Apr 7, 2024
d251612
[FEATURE] Use media query range syntax
deoostfrees May 13, 2024
f1e29c4
[TASK] Change container size behaviour
deoostfrees May 21, 2024
c13bacb
[TASK] Make linter happy again
deoostfrees May 21, 2024
83f57fa
[TASK] Build CSS
deoostfrees May 21, 2024
884f4d4
[TASK] Update dev dependencies
deoostfrees May 21, 2024
7aab8af
[TASK] Prepare version 3.2.0
deoostfrees May 21, 2024
3aef793
[TASK] Add/ Update dev dependencies
deoostfrees Jun 4, 2024
6368849
[TASK] Add/ Update dev dependencies
deoostfrees Jul 16, 2024
d1ca529
[TASK] Update dev dependencies
deoostfrees Jul 24, 2024
8738ad0
[TASK] Typo
deoostfrees Jul 24, 2024
300db3c
[TASK] Update dev dependencies
deoostfrees Aug 1, 2024
e8d6ac9
[TASK] Update dev dependencies
deoostfrees Aug 19, 2024
6ed9da1
[TASK] Update dev dependencies
deoostfrees Sep 2, 2024
a910e35
[TASK] Update dev dependencies
deoostfrees Oct 21, 2024
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
27 changes: 27 additions & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss",
"stylelint-use-logical"
],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"color-hex-length": "long",
"comment-whitespace-inside": null,
"no-descending-specificity": null,
"shorthand-property-no-redundant-values": [true, {"severity": "warning"}],
"declaration-no-important": true,
"no-duplicate-at-import-rules": true,
"selector-max-id": 0,
"declaration-block-no-duplicate-properties": true,
"rule-empty-line-before": ["always-multi-line", {"ignore": ["after-comment"]}],
"value-keyword-case": "lower",
"scss/at-import-partial-extension": null,
"selector-class-pattern": ["^([a-z][a-z0-9]*)(-[a-z0-9]+)*(_[a-z0-9]+)*(__[a-z]((_|-)?[a-z0-9])*)?(--[a-z0-9]((_|-)?[a-z0-9\\\\\\/])*)?$", { "resolveNestedSelectors": true }],
"declaration-block-no-redundant-longhand-properties": null,
"csstools/use-logical": true
}
}
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,18 @@

All notable changes to this project will be documented in this file.

## [3.2.0] - 2024-

### Changed

- Use CSS `min` instead of `padding` on the `.container` class. f1e29c4 @deoostfrees
- Use media query range syntax. d251612 @deoostfrees

## [3.1.0] - 2023-09-17

### Added

- Add class `container--full` as a replacement for class `container--full-width` (deprecated).
- Class `container--full` as a replacement for class `container--full-width` (deprecated).

### Changed

Expand All @@ -16,16 +23,15 @@ All notable changes to this project will be documented in this file.

### Added

- Add changelog section to keep track of changes.
- Add CSS custom properties for container widths and gutters between columns and rows.
- Add demo file.
- Add classes for Flexbox defaults.
- Changelog section to keep track of changes.
- CSS custom properties for container widths and gutters between columns and rows.
- Demo file.
- Classes for Flexbox defaults.

### Changed

- **Breaking:** Replace Sass variables with CSS custom properties for container widths and gutters between columns and rows.
- **Breaking:** Rename Sass variables.
- Update the development dependencies to the latest versions.

### Removed

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The MIT License (MIT)

Copyright (c) 2019-2023 Benjamin de Oostfrees
Copyright (c) 2019-2024 Benjamin de Oostfrees

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gibki

Gibki is an open-source grid system based on Flexbox.
Gibki is an open source grid system based on Flexbox.

[Open in CodePen](https://codepen.io/collection/pgogaZ)

Expand Down
Loading