22 lines
374 B
CSS
22 lines
374 B
CSS
|
.oauth2-banner {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 10px;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.oauth2-banner-text {
|
||
|
font-size: .9em;
|
||
|
line-height: 1.4em;
|
||
|
flex: 1 1 auto;
|
||
|
}
|
||
|
.oauth2-banner-logo {
|
||
|
flex: 0 0 auto;
|
||
|
background-color: #fff;
|
||
|
mask: url('/images/flashii.svg') no-repeat center;
|
||
|
width: 30px;
|
||
|
height: 30px;
|
||
|
font-size: 0;
|
||
|
}
|
||
|
|