fixed animation on technologies page
This commit is contained in:
@@ -40,7 +40,7 @@ $purple200: #ce93d8;
|
|||||||
.technologies-page {
|
.technologies-page {
|
||||||
.tech-scrollbar {
|
.tech-scrollbar {
|
||||||
height: 5rem;
|
height: 5rem;
|
||||||
width: 60rem;
|
min-width: 60rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@@ -54,9 +54,10 @@ $purple200: #ce93d8;
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
top: 0.3rem;
|
||||||
font-size: 1.2rem;
|
font-size: 1.2rem;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
margin: 0.3rem;
|
margin: 0 0.3rem;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
background-color: $purple200;
|
background-color: $purple200;
|
||||||
height: 5rem;
|
height: 5rem;
|
||||||
|
|||||||
@@ -11,13 +11,12 @@ const { htmlTheme } = DocumentStyle;
|
|||||||
export default function Technologies() {
|
export default function Technologies() {
|
||||||
return (
|
return (
|
||||||
<div className="technologies-page" style={htmlTheme}>
|
<div className="technologies-page" style={htmlTheme}>
|
||||||
<Card sx={technologyCard}>
|
<Card sx={{padding: '2rem'}}>
|
||||||
<h1>What technologies do I use?</h1>
|
<h1>What technologies do I use?</h1>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
|
<h2>These are my most often-used technologies:</h2>
|
||||||
<Card sx={technologyCard}>
|
<Card sx={technologyCard}>
|
||||||
<h2>These are my most often-used technologies:</h2>
|
|
||||||
|
|
||||||
<div className="tech-scrollbar">
|
<div className="tech-scrollbar">
|
||||||
<Chip label="React" className="tech-bar-item"/>
|
<Chip label="React" className="tech-bar-item"/>
|
||||||
<Chip label="Redux" className="tech-bar-item"/>
|
<Chip label="Redux" className="tech-bar-item"/>
|
||||||
@@ -37,8 +36,8 @@ export default function Technologies() {
|
|||||||
</div>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
|
<h2>Here are some I use relatively often:</h2>
|
||||||
<Card sx={technologyCard}>
|
<Card sx={technologyCard}>
|
||||||
<h2>Here are some I use relatively often:</h2>
|
|
||||||
|
|
||||||
<div className="tech-scrollbar from-right">
|
<div className="tech-scrollbar from-right">
|
||||||
<Chip className="tech-bar-item variant-2" label="Sass" />
|
<Chip className="tech-bar-item variant-2" label="Sass" />
|
||||||
@@ -57,8 +56,8 @@ export default function Technologies() {
|
|||||||
|
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
|
<h2>And here are some things I'm working on learning:</h2>
|
||||||
<Card sx={technologyCard}>
|
<Card sx={technologyCard}>
|
||||||
<h2>And here are some things I'm working on learning:</h2>
|
|
||||||
|
|
||||||
<div className="tech-scrollbar">
|
<div className="tech-scrollbar">
|
||||||
<Chip className="tech-bar-item variant-3" label="Prisma" />
|
<Chip className="tech-bar-item variant-3" label="Prisma" />
|
||||||
@@ -75,8 +74,6 @@ export default function Technologies() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
<a href="/">Home</a>
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@@ -144,10 +144,9 @@ export const AboutMePage = {
|
|||||||
export const TechnologiesPage = {
|
export const TechnologiesPage = {
|
||||||
technologyCard: {
|
technologyCard: {
|
||||||
backgroundColor: indigo[50],
|
backgroundColor: indigo[50],
|
||||||
width: '30vw',
|
width: '40vw',
|
||||||
maxHeight: '10rem',
|
|
||||||
margin: '2rem',
|
margin: '2rem',
|
||||||
padding: '2rem',
|
borderRadius: '15px',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user