File tree Expand file tree Collapse file tree 6 files changed +23
-11
lines changed
Expand file tree Collapse file tree 6 files changed +23
-11
lines changed Original file line number Diff line number Diff line change 11.brand-text {
2- padding-left : 5px ;
2+ margin-top : 3px ;
3+ margin-left : 5px ;
4+
5+ img {
6+ height : 36px ;
7+ }
38}
Original file line number Diff line number Diff line change 66 position : fixed ;
77 left : 0 ;
88 bottom : 0 ;
9+ background-color : color .$blue-800 ;
910
10- .brand-text {
11- background-color : color .$blue-800 ;
11+ .text {
12+ margin-top : -5px ;
13+ margin-left : 6px ;
14+ color : color .$gray-300 ;
15+ font-size : 10px ;
1216 }
1317}
Original file line number Diff line number Diff line change 11import React from "react" ;
22import styles from "@/assets/sass/molecules/BrandText.module.scss" ;
3- import brandImage from "@/assets/images/brand.png " ;
3+ import brandImage from "@/assets/images/brand.svg " ;
44
55const BrandText : React . FC = ( ) => {
66 return (
Original file line number Diff line number Diff line change @@ -3,16 +3,18 @@ import BrandText from "../molecules/BrandText";
33import Separator from "../atoms/Separater" ;
44import styles from "@/assets/sass/organism/Footer.module.scss" ;
55
6+ const date = new Date ( ) ;
7+
68const Footer : React . FC = ( ) => {
79 return (
8- < >
9- < div className = { styles . footer } >
10- < Separator />
11- < div className = { styles [ "brand- text" ] } >
12- < BrandText />
13- </ div >
10+ < div className = { styles . footer } >
11+ < Separator / >
12+ < BrandText />
13+ < div className = { styles . text } >
14+ (c) 2024- { date . getFullYear ( ) } Faculty of Informatics, Shizuoka University all rights reserved. Developed by IT
15+ Solution Room, Shizuoka University.
1416 </ div >
15- </ >
17+ </ div >
1618 ) ;
1719} ;
1820
You can’t perform that action at this time.
0 commit comments