File size: 591 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import React from "react";
import styled from "styled-components";
import CurrentTrack from "./CurrentTrack";
import PlayerControls from "./PlayerControls";
import Volume from "./Volume";
export default function Footer() {
return (
<Container>
<CurrentTrack />
<PlayerControls />
<Volume />
</Container>
);
}
const Container = styled.div`
height: 100%;
width: 100%;
background-color: #181818;
border-top: 1px solid #282828;
display: grid;
grid-template-columns: 1fr 2fr 1fr;
align-items: center;
justify-content: center;
padding: 0 1rem;
`;
|