Lidarr/frontend/src/Components/Page/Sidebar/Messages/Message.css

43 lines
576 B
CSS
Raw Normal View History

2017-09-04 02:20:56 +00:00
.message {
display: flex;
border-left: 3px solid var(--infoColor);
2017-09-04 02:20:56 +00:00
}
.iconContainer,
.text {
display: flex;
justify-content: center;
flex-direction: column;
padding: 2px 0;
color: var(--sidebarColor);
2017-09-04 02:20:56 +00:00
}
.iconContainer {
flex: 0 0 25px;
margin-left: 24px;
padding: 10px 0;
}
.text {
margin-right: 24px;
font-size: 13px;
}
/* Types */
.error {
border-left-color: var(--dangerColor);
2017-09-04 02:20:56 +00:00
}
.info {
border-left-color: var(--infoColor);
2017-09-04 02:20:56 +00:00
}
.success {
border-left-color: var(--successColor);
2017-09-04 02:20:56 +00:00
}
.warning {
border-left-color: var(--warningColor);
2017-09-04 02:20:56 +00:00
}