/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import {css} from 'lit'; /** * SideBarExpand CSS */ export const styles = css` :host { display: inline-flex; } .expand-btn { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: none; background: transparent; color: inherit; cursor: pointer; border-radius: 6px; transition: background-color 0.2s ease; } `; export default [styles];