Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamz12345 committed Jun 13, 2024
1 parent cb15421 commit 1bfdce8
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 37 deletions.
1 change: 1 addition & 0 deletions portfolio/src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './style.css'

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
Expand Down
74 changes: 37 additions & 37 deletions portfolio/public/style.css → portfolio/src/style.css
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
background: transparent;
}

body{
font-family: 'Ubuntu', sans-serif;
background: rgb(27, 29, 31);
color: white;
overflow: hidden;
overflow-y: auto;


}

.page{
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
}

p{
color: rgb(129, 137, 146);
}

.pageContent{
margin: 2rem auto;
max-width: 70vw;
}

@media screen and (max-width:1050px) {
.pageContent{max-width: 90vw;}
}
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
background: transparent;
}

body{
font-family: 'Ubuntu', sans-serif;
background: rgb(27, 29, 31);
color: white;
overflow: hidden;
overflow-y: auto;


}

.page{
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
}

p{
color: rgb(129, 137, 146);
}

.pageContent{
margin: 2rem auto;
max-width: 70vw;
}

@media screen and (max-width:1050px) {
.pageContent{max-width: 90vw;}
}

0 comments on commit 1bfdce8

Please sign in to comment.