60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
/*
|
|
Copyright (c) Microsoft Corporation.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
.workbench {
|
|
contain: size;
|
|
}
|
|
|
|
.workbench .header {
|
|
display: flex;
|
|
background-color: #000;
|
|
flex: none;
|
|
flex-basis: 48px;
|
|
line-height: 48px;
|
|
font-size: 16px;
|
|
color: white;
|
|
}
|
|
|
|
.workbench tab-content {
|
|
padding: 25px;
|
|
contain: size;
|
|
}
|
|
|
|
.workbench tab-strip {
|
|
margin-left: calc(-1*var(--sidebar-width));
|
|
padding-left: var(--sidebar-width);
|
|
box-shadow: var(--box-shadow);
|
|
}
|
|
|
|
.workbench .logo {
|
|
font-size: 20px;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.workbench .product {
|
|
font-weight: 600;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.workbench .spacer {
|
|
flex: auto;
|
|
}
|
|
|
|
tab-strip {
|
|
background-color: var(--light-background);
|
|
}
|
|
|