Skip to content

Commit 2dbbbf3

Browse files
Merge pull request #64 from oslabs-beta/dev
Dev to Master
2 parents d0a2aa4 + 3e88244 commit 2dbbbf3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

website/components/Carousel.jsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,31 @@ const Carousel = () => {
2020
</div>
2121
<div className="carousel-inner">
2222
<div className="carousel-item active">
23-
<Image className="d-block w-100" src={firstSlide} alt="First slide"/>
23+
<Image className="d-block w-100" src={firstSlide} alt="First slide" priority={true}/>
2424
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
2525
<p>Open a root component to structure your app&apos;s files so they match its dependency relationships.</p>
2626
</div>
2727
</div>
2828
<div className="carousel-item">
29-
<Image className="d-block w-100" src={secondSlide} alt="Second slide"/>
29+
<Image className="d-block w-100" src={secondSlide} alt="Second slide" priority={true}/>
3030
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
3131
<p>Use Sapling&apos;s intuitive icons to get a list of props available to each component, see which components are connected to your Redux store, and open the file you wish to edit.</p>
3232
</div>
3333
</div>
3434
<div className="carousel-item">
35-
<Image className="d-block w-100" src={thirdSlide} alt="Third slide"/>
35+
<Image className="d-block w-100" src={thirdSlide} alt="Third slide" priority={true}/>
3636
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
3737
<p>Sapling is highly responsive, and notices whenever you edit and save a file.</p>
3838
</div>
3939
</div>
4040
<div className="carousel-item">
41-
<Image className="d-block w-100" src={fourthSlide} alt="Fourth slide"/>
41+
<Image className="d-block w-100" src={fourthSlide} alt="Fourth slide" priority={true}/>
4242
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
4343
<p>Rebuild the tree with your currently open file as the root. Note that Sapling retains its expanded state between sessions.</p>
4444
</div>
4545
</div>
4646
<div className="carousel-item">
47-
<Image className="d-block w-100" src={fifthSlide} alt="Fifth slide"/>
47+
<Image className="d-block w-100" src={fifthSlide} alt="Fifth slide" priority={true}/>
4848
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
4949
<p>Toggle the display of third-party and React Router components, and watch as Sapling&apos;s theme changes to match your preferences.</p>
5050
</div>

website/styles/globals.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ nav#navbar {
9292

9393
.carousel-caption {
9494
color: #CECECE;
95-
background: rgb(0, 0, 0, 0.5);
95+
font-weight: 600;
96+
background: rgb(0, 0, 0, 0.6);
9697
border-radius: 20px;
9798
}
9899

0 commit comments

Comments
 (0)