Reviewed By: priteshrnandgaonkar Differential Revision: D6999652 fbshipit-source-id: 93f4e43894388bb607112691a0b97e2e12a7df23
59 lines
942 B
CSS
59 lines
942 B
CSS
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
.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;
|
|
}
|
|
}
|