NUDR / frontend /src /components /ResearchProgressFooter.module.css
magicboris's picture
Upload 83 files
3647b02 verified
/*
* SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* 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.
*/
.footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem;
border-top: 1px solid rgb(229 231 235);
background-color: rgb(243 244 246);
}
.stats {
display: flex;
align-items: center;
gap: 1rem;
}
.time {
color: rgb(17 24 39);
font-size: 0.875rem;
font-weight: 500;
}
.searchCount,
.queryCount {
display: flex;
align-items: center;
gap: 0.5rem;
color: rgb(17 24 39);
font-size: 0.875rem;
}
.searchIcon,
.queryIcon {
height: 1rem;
width: 1rem;
color: rgb(107 114 128);
}
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
.footer {
border-top-color: rgb(55 65 81);
background-color: rgb(31 41 55);
}
.time {
color: rgb(243 244 246);
}
.searchCount,
.queryCount {
color: rgb(243 244 246);
}
.searchIcon,
.queryIcon {
color: rgb(156 163 175);
}
}