Summary: This change drops the year from the copyright headers and the LICENSE file. Reviewed By: yungsters Differential Revision: D9727774 fbshipit-source-id: df4fc1e4390733fe774b1a160dd41b4a3d83302a
57 lines
822 B
CSS
57 lines
822 B
CSS
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
.Toolbar {
|
|
display: flex;
|
|
padding: 20px 15px;
|
|
z-index: 4;
|
|
align-items: center;
|
|
background-color: white;
|
|
}
|
|
|
|
.Toolbar .selected {
|
|
color: #6BCEBB;
|
|
}
|
|
|
|
.Toolbar .logo {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.Toolbar a {
|
|
margin: 0 15px;
|
|
color: #606770;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.Toolbar a:hover {
|
|
color: #6BCEBB;
|
|
}
|
|
|
|
.Toolbar .ToolbarToggle {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.Toolbar .ToolbarToggle i {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
@media only screen and (max-width: 576px) {
|
|
.Toolbar {
|
|
padding: 10px 5px;
|
|
}
|
|
|
|
.Toolbar a {
|
|
margin: 0 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.Toolbar .ToolbarToggle {
|
|
font-size: 12px;
|
|
}
|
|
}
|