File tree Expand file tree Collapse file tree 2 files changed +26
-11
lines changed
application/frontend/src/pages/Search Expand file tree Collapse file tree 2 files changed +26
-11
lines changed Original file line number Diff line number Diff line change @@ -1024,16 +1024,18 @@ body {
10241024 z-index : 10 ;
10251025 width : 100% ;
10261026 border-top : 1px solid rgba (var (--border-rgb ), 0.5 );
1027- padding : 3 rem 0 ;
1027+ padding : 4 rem 0 ; // ⬅ slightly more breathing room
10281028 backdrop-filter : blur (4px );
10291029
10301030 & __container {
10311031 max-width : 112rem ;
10321032 margin : 0 auto ;
10331033 padding : 0 1rem ;
1034+
10341035 @media (min-width : 640px ) {
10351036 padding : 0 1.5rem ;
10361037 }
1038+
10371039 @media (min-width : 1024px ) {
10381040 padding : 0 2rem ;
10391041 }
@@ -1042,53 +1044,67 @@ body {
10421044 & __grid {
10431045 display : grid ;
10441046 grid-template-columns : 1fr ;
1045- gap : 2rem ;
1047+ gap : 2.5rem ;
1048+ align-items : start ;
1049+
10461050 @media (min-width : 768px ) {
1047- grid-template-columns : repeat (4 , 1fr );
1051+ grid-template-columns : 1.2fr 1fr 1fr 1fr ; // ⬅ brand slightly wider
1052+ gap : 3.5rem ;
10481053 }
10491054 }
10501055
10511056 & __about {
10521057 display : flex ;
10531058 flex-direction : column ;
1054- gap : 1rem ;
1059+ gap : 1.25rem ;
1060+ max-width : 30rem ;
1061+
10551062 .logo-link {
10561063 display : flex ;
10571064 align-items : center ;
10581065 gap : 0.5rem ;
1066+
10591067 img {
1060- height : 10 rem ;
1061- width : 10 rem ;
1068+ height : 2 rem ; // ⬅ reduced from 2.25rem
1069+ width : auto ;
10621070 }
10631071 }
1072+
10641073 p {
10651074 color : var (--muted-foreground );
1075+ line-height : 1.6 ;
1076+ font-size : 0.95rem ;
10661077 }
10671078 }
10681079
10691080 & __links-column {
10701081 .column-title {
10711082 color : white ;
10721083 font-weight : 500 ;
1073- margin-bottom : 1rem ;
1084+ font-size : 0.95rem ;
1085+ letter-spacing : 0.02em ;
1086+ margin-bottom : 1.1rem ;
10741087 }
1088+
10751089 .links-list {
10761090 display : flex ;
10771091 flex-direction : column ;
1078- gap : 0.5rem ;
1092+ gap : 0.55rem ;
1093+
10791094 a {
10801095 display : block ;
10811096 color : var (--muted-foreground );
1082- transition : color 0.3s ;
1097+ font-size : 0.9rem ;
1098+ transition : color 0.25s ease ;
10831099 text-decoration : none ;
1100+
10841101 & :hover {
10851102 color : var (--foreground );
10861103 }
10871104 }
10881105 }
10891106 }
10901107}
1091-
10921108.loading-screen {
10931109 min-height : 100vh ;
10941110 background-color : var (--background );
Original file line number Diff line number Diff line change 1212 "lib" : [" esnext" , " dom" ],
1313 "outDir" : " dist" ,
1414 "moduleResolution" : " node" ,
15- "keyofStringsOnly" : true ,
1615 "skipLibCheck" : true ,
1716 "esModuleInterop" : true
1817 },
You can’t perform that action at this time.
0 commit comments