24 lines
415 B
CSS
24 lines
415 B
CSS
.upperToolTips {
|
|
display: flex;
|
|
padding: 10px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 10px;
|
|
align-self: stretch;
|
|
background: #959aff;
|
|
}
|
|
.upperToolTips > div {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
.upperToolTips > div > p {
|
|
color: #191a24;
|
|
text-align: center;
|
|
font-family: Inter;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: normal;
|
|
}
|