mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-21 15:43:26 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Selis <selis@xynolabs.com>
29 lines
492 B
SCSS
29 lines
492 B
SCSS
/**
|
|
* Copyright (c) 2020 Aleksej Komarov
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
@use 'sass:math';
|
|
|
|
$border-color: rgba(140, 140, 140, 0.5) !default;
|
|
|
|
.Ping {
|
|
position: relative;
|
|
padding: 0.125em 0.25em;
|
|
border: math.div(1em, 12) solid $border-color;
|
|
border-radius: 0.25em;
|
|
width: 3.75em;
|
|
text-align: right;
|
|
}
|
|
|
|
.Ping__indicator {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0.5em;
|
|
left: 0.5em;
|
|
width: 0.5em;
|
|
height: 0.5em;
|
|
background-color: #888;
|
|
border-radius: 0.25em;
|
|
}
|