mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* example of function memory game * refactor: remove unnecessary manual PartialEq implementation * refactor: remove unnecessary license note * refactor: update implementation and doc with suggestions * refactor: fix format and lint issues
25 lines
435 B
SCSS
25 lines
435 B
SCSS
.game-status-container {
|
|
position: relative;
|
|
margin-top: 10px;
|
|
width: 100%;
|
|
height: 20px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
button {
|
|
border: none;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
color: #5979ac;
|
|
font-size: 17px;
|
|
font-weight: bold;
|
|
}
|
|
.sec-past {
|
|
position: absolute;
|
|
right: 10px;
|
|
font-size: 15px;
|
|
font-weight: normal;
|
|
}
|
|
}
|