30 lines
460 B
CSS
30 lines
460 B
CSS
/* P2NS brand lockup — shared plugin branding */
|
|
.brand-lockup {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
.brand-lockup--center {
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.brand-lockup-logo {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
object-fit: contain;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.brand-lockup--center .brand-lockup-logo {
|
|
width: 2.5rem;
|
|
height: 2.5rem;
|
|
}
|
|
|
|
.brand-lockup-text {
|
|
min-width: 0;
|
|
}
|