2024-05-02 21:37:11 +03:00
|
|
|
/**
|
|
|
|
|
* Copyright © 2016-2024 The Thingsboard Authors
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
@import '../../../../../../scss/constants';
|
|
|
|
|
|
|
|
|
|
:host {
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tb-title {
|
2024-05-07 11:08:39 +03:00
|
|
|
padding-bottom: 12px;
|
2024-05-02 21:37:11 +03:00
|
|
|
align-self: start;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
letter-spacing: 0.1px;
|
|
|
|
|
color: rgba(0, 0, 0, 0.76);
|
2024-05-07 11:08:39 +03:00
|
|
|
|
2024-05-02 21:37:11 +03:00
|
|
|
@media #{$mat-md-lg} {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
letter-spacing: 0.25px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tb-qrcode-label {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: rgba(0, 0, 0, 0.54);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tb-qrcode {
|
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tb-badge-container {
|
2024-05-07 17:14:31 +03:00
|
|
|
@media #{$mat-md} {
|
2024-05-02 21:37:11 +03:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|