fox-send/app/templates/header/header.css

32 lines
669 B
CSS
Raw Normal View History

.header {
2018-09-28 14:54:23 +00:00
align-items: flex-end;
display: flex;
2018-09-28 14:54:23 +00:00
flex-direction: row;
height: calc(var(--grid-basis) * 4);
justify-content: space-between;
width: 100%;
}
2018-09-28 14:54:23 +00:00
.header h1 {
margin: 0;
}
.feedback {
background-color: #979797;
background-image: url('../assets/feedback.svg');
background-position: 2px 4px;
background-repeat: no-repeat;
background-size: 18px;
color: var(--primaryControlFGColor);
cursor: pointer;
display: block;
font-size: 12px;
line-height: 12px;
padding: 5px 5px 5px 20px;
text-indent: 2px;
transition: all 250ms ease-in-out;
white-space: nowrap;
margin-left: calc(var(--grid-basis) * 2);
margin-bottom: 8px;
}