Updating stylelint dependencies.

This commit is contained in:
John Livingston 2024-09-10 10:38:45 +02:00
parent 4f2fbfc228
commit 634e894522
No known key found for this signature in database
GPG Key ID: B17B5640CE66CDBC
5 changed files with 672 additions and 1071 deletions

View File

@ -10,4 +10,4 @@
@use "video"; @use "video";
@use "configuration/configuration"; @use "configuration/configuration";
@use "admin/firewall/firewall"; @use "admin/firewall/firewall";
@use "list-rooms/list-rooms.scss"; @use "list-rooms/list-rooms";

View File

@ -34,7 +34,7 @@
min-height: max(30vh, 300px); min-height: max(30vh, 300px);
} }
@media screen and (orientation: portrait) and (max-width: 767px) { @media screen and (orientation: portrait) and (width <= 767px) {
/* On small screen, and when portrait mode, we are giving the chat more vertical space. /* On small screen, and when portrait mode, we are giving the chat more vertical space.
It should go under the video. It should go under the video.
*/ */

View File

@ -198,7 +198,7 @@
} }
// Bigger occupants sidebar when width is not big enough. // Bigger occupants sidebar when width is not big enough.
@media screen and (max-width: 576px) { @media screen and (width <= 576px) {
.chatroom .box-flyout .chatroom-body .occupants { .chatroom .box-flyout .chatroom-body .occupants {
min-width: 50%; min-width: 50%;
} }

1721
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -67,9 +67,9 @@
"npm-run-all": "^4.1.5", "npm-run-all": "^4.1.5",
"sass": "^1.78.0", "sass": "^1.78.0",
"sharp": "^0.33.5", "sharp": "^0.33.5",
"stylelint": "^14.0.1", "stylelint": "^16.9.0",
"stylelint-config-recommended-scss": "^5.0.1", "stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard-scss": "^2.0.1", "stylelint-config-standard-scss": "^13.1.0",
"svgo": "^3.3.2", "svgo": "^3.3.2",
"typescript": "^5.5.4", "typescript": "^5.5.4",
"typescript-eslint": "^8.5.0", "typescript-eslint": "^8.5.0",