fixed resizing and added css from mon patcher so it looks prettier
This commit is contained in:
@ -137,7 +137,7 @@ const Page = async () => {
|
||||
<TabsContent value="HotPlays">
|
||||
<ChunithmHotPlays chuniProfileHotPlays={HotChuniPlays} />
|
||||
</TabsContent>
|
||||
<TabsContent value="Patcher">
|
||||
<TabsContent className="" value="Patcher">
|
||||
<Patcher />
|
||||
</TabsContent>
|
||||
</Tabs>
|
||||
|
@ -328,3 +328,38 @@ video {
|
||||
.avatar_item_l img {
|
||||
transform: translate(-100px, 0px);
|
||||
}
|
||||
|
||||
|
||||
.icons {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, 180px);
|
||||
grid-auto-flow: dense;
|
||||
align-items: stretch;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
|
||||
}
|
||||
|
||||
.gameicon,
|
||||
.patchContainer {
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
|
||||
color: inherit;
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
|
||||
}
|
||||
|
||||
.gameicon {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
text-decoration: none;
|
||||
margin: 15px;
|
||||
width: 144px;
|
||||
padding: 10px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
label.gameicon {
|
||||
cursor: pointer;
|
||||
background: #fffcf0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user