Skip to content

Commit

Permalink
upd: border cards #190
Browse files Browse the repository at this point in the history
  • Loading branch information
habdevs committed Sep 7, 2023
1 parent d72ffb1 commit c9d5491
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions components/LeftPanel/LeftPanel.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.container {
background-color: var(--gray-lightest);
//background-color: var(--gray-lightest);
border-radius: 1rem;
margin-right: 25px;
overflow: hidden;
Expand All @@ -9,7 +9,7 @@
justify-content: space-between;

@media (min-width: 480px) {
width: 42rem;
width: 45rem;
height: 61rem;
}
@media (max-width: 992px) {
Expand Down
6 changes: 3 additions & 3 deletions components/Player/Player.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
padding: 10px;
margin-right: 5px;
border-radius: 10px;
border: 1px solid var(--light-grey, #e8e8e8);
border: 2px solid var(--light-grey, #e8e8e8);
background: #fff;

align-items: center;
Expand Down Expand Up @@ -79,8 +79,8 @@
}

.highlight {
border-radius: 10px;
border: 2px solid var(--purple, #8777da);
border-radius: 1rem;
border: 3px solid var(--purple, #8777da);
box-shadow: 0px 4px 6px 0px rgba(135, 119, 218, 0.3);
animation-name: blinking;
animation-duration: 2s;
Expand Down
5 changes: 2 additions & 3 deletions components/RightPanel/RightPanel.module.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
.container {
position: relative;
width: 710px;
height: 610px;
width: 71rem;
height: 61rem;
border-radius: 10px;
background-color: var(--gray-lightest);
margin-left: 25px;
padding-top: 5px;
padding-left: 15px;
padding-right: 15px;
Expand Down
2 changes: 0 additions & 2 deletions pages/games/[gameType].tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { useEffect, useState } from 'react';
import { GetStaticPaths, GetStaticProps, NextPage } from 'next';
import router, { useRouter } from 'next/router';

import { ParsedUrlQuery } from 'querystring';
import { XMTPChatLog } from 'components/XMTPChatLog';
import { Disclaimer, DisclaimerNotice, GameField, GetHistory, JoinGame, LeftPanel, RightPanel, SelectGame, SelectPrize } from 'components';

import styles from 'pages/games/gameType.module.scss';
import { TicTacToe, PlayerType as TicTacToePlayerType } from 'components/Games/Tic-Tac-Toe';
import { TicTacToeState } from 'components/Games/Tic-Tac-Toe/types';
Expand Down
5 changes: 3 additions & 2 deletions pages/games/gameType.module.scss
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
.container {
max-width: 1650px;
max-width: 169rem;
margin: 0 auto;
position: relative;
background-color: var(--gray-lightest);
background-color: var(--white);
display: flex;
gap: 0.5rem;
justify-content: center;
align-items: center;
padding-top: 45px;
flex-wrap: wrap;
//flex-wrap: wrap;

@media (max-width: 992px) {
margin-top: 50px;
Expand Down

0 comments on commit c9d5491

Please sign in to comment.