Remove some files

This commit is contained in:
Bill 2022-03-04 00:04:17 -05:00
parent 25c7017518
commit e2ba6c7e9b
7 changed files with 8 additions and 92 deletions

View File

@ -318,6 +318,14 @@
}
}
.furni-image {
position: relative;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: center;
}
.nitro-rarity-level {
width: 36px;
height: 28px;

View File

@ -1,7 +1,4 @@
@import "./avatar-image/AvatarImage";
@import "./badge-image/BadgeImage";
@import "./furni-image/FurniImageView";
@import "./limited-edition/LimitedEdition";
@import "./pet-image/PetImage";
@import "./rarity-level/RarityLevelView";
@import "./room-previewer/RoomPreviewerView";

View File

@ -1,29 +0,0 @@
.badge-image {
position: relative;
width: 40px;
height: 40px;
background-repeat: no-repeat;
background-position: center;
&.group-badge {
width: 39px;
height: 39px;
&.scale-2 {
width: 80px;
height: 80px;
}
}
.badge-information {
display: none;
}
&:hover {
.badge-information {
display: block;
}
}
@import './badge-info/BadgeInformationView';
}

View File

@ -1,22 +0,0 @@
.badge-information {
position: absolute;
pointer-events: none;
user-select: none;
width: 210px;
border-radius: $border-radius;
background: $white;
left: -220px;
z-index: 100;
&:before {
position: absolute;
content: ' ';
width: 0;
height: 0;
border-left: 10px solid $white;
border-bottom: 10px solid transparent;
border-top: 10px solid transparent;
top: 10px;
right: -10px;
}
}

View File

@ -1,19 +0,0 @@
import { FC } from 'react';
interface BadgeInformationViewProps
{
title: string;
description: string;
}
export const BadgeInformationView: FC<BadgeInformationViewProps> = props =>
{
const { title = null, description = null } = props;
return (
<div className="badge-information text-black py-1 px-2 small">
<div className="fw-bold mb-1">{ title }</div>
<div>{ description }</div>
</div>
);
};

View File

@ -1,7 +0,0 @@
.furni-image {
position: relative;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: center;
}

View File

@ -1,12 +0,0 @@
.nitro-rarity-level {
width: 36px;
height: 28px;
background: url("../../../assets/images/infostand/rarity-level.png");
div {
line-height: 28px;
text-align: center;
color: $black;
font-weight: bold;
}
}