Skip to content

Commit

Permalink
Merge pull request #64 from oslabs-beta/dev
Browse files Browse the repository at this point in the history
Dev to Master
  • Loading branch information
charlesgutwirth committed Oct 5, 2021
2 parents d0a2aa4 + 3e88244 commit 2dbbbf3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions website/components/Carousel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,31 +20,31 @@ const Carousel = () => {
</div>
<div className="carousel-inner">
<div className="carousel-item active">
<Image className="d-block w-100" src={firstSlide} alt="First slide"/>
<Image className="d-block w-100" src={firstSlide} alt="First slide" priority={true}/>
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
<p>Open a root component to structure your app&apos;s files so they match its dependency relationships.</p>
</div>
</div>
<div className="carousel-item">
<Image className="d-block w-100" src={secondSlide} alt="Second slide"/>
<Image className="d-block w-100" src={secondSlide} alt="Second slide" priority={true}/>
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
<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>
</div>
</div>
<div className="carousel-item">
<Image className="d-block w-100" src={thirdSlide} alt="Third slide"/>
<Image className="d-block w-100" src={thirdSlide} alt="Third slide" priority={true}/>
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
<p>Sapling is highly responsive, and notices whenever you edit and save a file.</p>
</div>
</div>
<div className="carousel-item">
<Image className="d-block w-100" src={fourthSlide} alt="Fourth slide"/>
<Image className="d-block w-100" src={fourthSlide} alt="Fourth slide" priority={true}/>
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
<p>Rebuild the tree with your currently open file as the root. Note that Sapling retains its expanded state between sessions.</p>
</div>
</div>
<div className="carousel-item">
<Image className="d-block w-100" src={fifthSlide} alt="Fifth slide"/>
<Image className="d-block w-100" src={fifthSlide} alt="Fifth slide" priority={true}/>
<div className="carousel-caption w-75 mx-auto d-none d-md-block">
<p>Toggle the display of third-party and React Router components, and watch as Sapling&apos;s theme changes to match your preferences.</p>
</div>
Expand Down
3 changes: 2 additions & 1 deletion website/styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ nav#navbar {

.carousel-caption {
color: #CECECE;
background: rgb(0, 0, 0, 0.5);
font-weight: 600;
background: rgb(0, 0, 0, 0.6);
border-radius: 20px;
}

Expand Down

1 comment on commit 2dbbbf3

@vercel
Copy link

@vercel vercel bot commented on 2dbbbf3 Oct 5, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.