Merge pull request #1605 from cryptpad/missing-card-margin

Missing margin on Features page
This commit is contained in:
yflory 2024-09-09 13:26:43 +02:00 committed by GitHub
commit ba1287ada8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -126,7 +126,7 @@ define([
]),
]);
var premiumFeatures =
h('div.col-12.col-sm-4.cp-anon-user',[
h('div.col-12.col-sm-4.cp-premium-user',[
h('div.card',[
h('div.title-card',[
h('h3.text-center',Msg.features_premium)

View File

@ -114,5 +114,10 @@
margin-top: 3em;
}
}
.cp-premium-user {
@media (max-width:575px) {
margin-top: 3em;
}
}
}