All Projects → alexruzzarin → styled-reboot

alexruzzarin / styled-reboot

Licence: MIT license
Bootstrap 4 reboot.css for styled-components

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to styled-reboot

shinit
Basic Init Daemon in POSIX sh
Stars: ✭ 17 (-39.29%)
Mutual labels:  reboot
css-reset-and-normalize
A combination of css reset and normalize (available in CSS, SCSS, Stylus and LESS).
Stars: ✭ 20 (-28.57%)
Mutual labels:  reboot
OS-X-Yosemite-on-Unsupported-Macs
Install OS X Yosemite on Unsupported Macs
Stars: ✭ 23 (-17.86%)
Mutual labels:  reboot
winboot
Command-line program to boot directly into Windows from a Linux terminal (in grub2 dual-boot setups).
Stars: ✭ 60 (+114.29%)
Mutual labels:  reboot
rebootmenu
一个Android电源菜单应用。
Stars: ✭ 36 (+28.57%)
Mutual labels:  reboot
Raspberry-Pi-Dashboard
Web-based dashboard interface to inspect Raspberry Pi hardware and software with no extra software required.
Stars: ✭ 131 (+367.86%)
Mutual labels:  reboot
arris-tg3442
Python tool to restart your Arris TG3442* cable modem/router remotely.
Stars: ✭ 15 (-46.43%)
Mutual labels:  reboot

CircleCI

styled-reboot

Bootstrap 4 reboot.css for styled-components

reboot.css from Bootstrap v4 for styled-components.

Also see styled-reset from Zac Anger && also see styled-normalize from LestaD.


Installation:

npm i styled-reboot

Usage with styled-components v4 or v5:

// app.js
import * as React from 'react';
import { Reboot } from 'styled-reboot';

const App = () => (
  <>
    <Reboot />
    <div>Hi, I am an app!</div>
  </>
);

export default App;

Or you can create your own global style (Don't forget to create a theme, or extend ours! We provide a few defaults.):

// app.js
import React from 'react';
import { createGlobalStyle, ThemeProvider } from 'styled-components';
import { reboot, defaultRebootTheme } from 'styled-reboot';

const GlobalStyle = createGlobalStyle`
  ${reboot}
  /* other styles */
`;

const App = () => (
  <ThemeProvider theme={defaultRebootTheme}>
    <GlobalStyle />
    <div>Hi, I am an app!</div>
  </ThemeProvider>
};

export default App;

Credits

All credit goes to Bootstrap for reboot.css. Bootstrap is released under the MIT License.

License:

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].