forked from CGM_Public/pretix_original
Fix alignment of checkout success message (Z#2399724)
When a customized checkout_success_text is used, that has other elements than `<p>`, the alignment was off. This fixes the alignment for all types of elements, that are a direct child of the thank-you-element `.thank-you > *`.
This commit is contained in:
committed by
GitHub
parent
81c251208c
commit
763c003487
@@ -30,12 +30,12 @@ html.rtl {
|
||||
padding-right: 20px;
|
||||
padding-left: 0;
|
||||
}
|
||||
.thank-you .fa {
|
||||
.thank-you > .fa {
|
||||
float: right;
|
||||
margin-left: 30px;
|
||||
margin-right: 0;
|
||||
}
|
||||
.thank-you p {
|
||||
.thank-you > * {
|
||||
margin-right: 158px;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user