send/app/templates/header/header.css
2018-11-01 10:43:13 -07:00

31 lines
669 B
CSS

.header {
align-items: flex-end;
display: flex;
flex-direction: row;
height: calc(var(--grid-basis) * 4);
justify-content: space-between;
width: 100%;
}
.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;
}