mirror of
https://github.com/billsonnn/nitro-react.git
synced 2025-01-19 05:46:27 +01:00
Remove some files
This commit is contained in:
parent
25c7017518
commit
e2ba6c7e9b
@ -318,6 +318,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.furni-image {
|
||||||
|
position: relative;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
}
|
||||||
|
|
||||||
.nitro-rarity-level {
|
.nitro-rarity-level {
|
||||||
width: 36px;
|
width: 36px;
|
||||||
height: 28px;
|
height: 28px;
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
@import "./avatar-image/AvatarImage";
|
@import "./avatar-image/AvatarImage";
|
||||||
@import "./badge-image/BadgeImage";
|
|
||||||
@import "./furni-image/FurniImageView";
|
|
||||||
@import "./limited-edition/LimitedEdition";
|
@import "./limited-edition/LimitedEdition";
|
||||||
@import "./pet-image/PetImage";
|
@import "./pet-image/PetImage";
|
||||||
@import "./rarity-level/RarityLevelView";
|
|
||||||
@import "./room-previewer/RoomPreviewerView";
|
@import "./room-previewer/RoomPreviewerView";
|
||||||
|
@ -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';
|
|
||||||
}
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
@ -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>
|
|
||||||
);
|
|
||||||
};
|
|
@ -1,7 +0,0 @@
|
|||||||
.furni-image {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
background-position: center;
|
|
||||||
}
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user