Skip to content

Commit 58d2b6d

Browse files
authored
Fix alert size in login page (#183)
1 parent dc726e5 commit 58d2b6d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111

1212
- Fixed dynamic display of alert size.
13+
- Fixed the size of the alert on the login page (`max-height` and `min-width`)
1314

1415
## [1.12.4] - 2024-11-08
1516

css/styles.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,19 @@
6161
transition: max-height .25s ease-out;
6262
transition: padding .25s ease-out;
6363
}
64+
6465
.plugin_news_alert-login .expanded .plugin_news_alert-content {
6566
padding: 5px 15px;
66-
max-height: 300px;
67+
max-height: 100%;
6768
overflow-y: auto;
6869
transition: max-height .25s ease-in;
6970
transition: padding .25s ease-in;
7071
}
7172

73+
.plugin_news_alert-login .plugin_news_alert {
74+
min-width: 50%;
75+
}
76+
7277
.plugin_news_alert-toggle {
7378
background-image: url(../pics/toggle_down.png);
7479
width: 16px;

0 commit comments

Comments
 (0)