Skip to content

Commit

Permalink
Merge pull request #73 from Amsterdam/release/241205-search-css-fix
Browse files Browse the repository at this point in the history
Release/241205 search css fix
  • Loading branch information
thomasm0 authored Dec 5, 2024
2 parents f7c7994 + 515c187 commit 881c308
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@


## [0.1.1](https://github.com/Amsterdam/ee-docs/compare/v0.1.0...v0.1.1) (2024-12-05)


### Bug Fixes

* **searchbutton:** fix invalid css nested media query in class ([#72](https://github.com/Amsterdam/ee-docs/issues/72)) ([52ca820](https://github.com/Amsterdam/ee-docs/commit/52ca820fecf3a27837b981bc56163adc18541471))

## 0.1.0 (2024-12-04)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docusaurus",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
6 changes: 4 additions & 2 deletions src/components/SearchButton/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@

.text {
display: none;
}

@media screen and (min-width: 997px) {
@media (min-width: 997px) {
.text {
display: inline;
}
}
}

0 comments on commit 881c308

Please sign in to comment.