chrome-devtools-frontend
Version:
Chrome DevTools UI
38 lines (33 loc) • 793 B
CSS
/*
* Copyright 2024 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.toolbar-container {
display: flex;
background-color: var(--sys-color-cdt-base-container);
border-bottom: 1px solid var(--sys-color-divider);
flex: 0 0 auto;
justify-content: space-between;
}
.ai-assistance-view-container {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
align-items: center;
overflow: hidden;
& .explore {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
}
.toolbar-feedback-link {
color: var(--sys-color-primary);
margin: 0 var(--sys-size-3);
height: auto;
}