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

41 lines
805 B
CSS
Raw Normal View History

.header {
2018-10-10 01:17:40 +00:00
flex: none;
display: flex;
2018-09-28 14:54:23 +00:00
flex-direction: row;
2018-10-10 01:17:40 +00:00
align-items: center;
justify-content: space-between;
width: 100%;
2018-10-10 01:17:40 +00:00
height: 64px;
background-color: white;
box-shadow: 0 -1px 0 0 #d7d7db7f, 0 2px 6px 0 #0000001e;
}
2018-09-28 14:54:23 +00:00
.header h1 {
margin: 0;
}
2018-10-10 01:17:40 +00:00
.header__controls {
justify-self: end;
display: grid;
grid-auto-flow: column;
grid-gap: 8px;
align-items: center;
}
2018-09-28 14:54:23 +00:00
.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;
}