UI: in plugin-list only show border-top when necessary (#4314)

This commit is contained in:
Richard Schreiber
2024-07-18 11:43:24 +02:00
committed by GitHub
parent 22e2143623
commit bfb480a288

View File

@@ -767,9 +767,11 @@ h1 .label {
.plugin-container { .plugin-container {
flex-basis: 100%; flex-basis: 100%;
flex-shrink: 0; flex-shrink: 0;
border-top: 1px solid #ccc;
padding-top: 15px; padding-top: 15px;
} }
.plugin-container:not(.featured-plugin) + .plugin-container {
border-top: 1px solid #ccc;
}
h4 { h4 {
margin-top: 0; margin-top: 0;
} }