-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from ZorrillosDev/fix/images/responsive
fix: responsive images and center footer, also added peertube to footer
- Loading branch information
Showing
7 changed files
with
44 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// react imports | ||
import React, { FC, ReactElement } from 'react' | ||
|
||
// mui imports | ||
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon' | ||
|
||
// ===========================|| CUSTOM ICON PEERTUBE ||=========================== // | ||
|
||
export const IconPeertube: FC<SvgIconProps> = (props): ReactElement => { | ||
return ( | ||
<SvgIcon {...props} viewBox="0 0 758 654"> | ||
<path d="M245.985 556.239L243.531 91.1902L647.503 321.59L245.985 556.239Z" fill="transparent" stroke="white" strokeWidth="16"/> | ||
<path d="M256.703 324.876L438.548 215.184L442.621 427.512L256.703 324.876Z" fill="white" stroke="white" strokeWidth="16"/> | ||
</SvgIcon> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters