41 lines
811 B
CSS
41 lines
811 B
CSS
.logout-section {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.logout-section__btn {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 8px;
|
|
width: 100%;
|
|
min-height: 50px;
|
|
padding: 14px 16px;
|
|
border-radius: 14px;
|
|
box-shadow: 0 2px 10px rgba(26, 25, 24, 0.03);
|
|
background-color: #ffffff;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.logout-section__icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
flex-shrink: 0;
|
|
display: block;
|
|
}
|
|
|
|
.logout-section__text {
|
|
font-size: 14px;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
font-weight: 500;
|
|
color: #e74c3c;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.mi-tap-btn--hover {
|
|
opacity: 0.85;
|
|
transform: scale(0.98);
|
|
}
|