When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}| #!/bin/sh | |
| # canonical url: https://github.com/zephinzer/config-nix-shell/blob/master/.aliases.kubectl | |
| # a set of useful aliases for kubectl usage by @zephinzer | |
| # | |
| # usage: source ./.aliases.kubectl.sh | |
| # | |
| # main features: | |
| # - use kcsetns to set your current namespace | |
| # - use kcgetns to get your current namespace | |
| # - simple intuitive shortcuts for everything else |
| import React from 'react'; | |
| import { withErrorBoundary } from 'components/common/MartyErrorBoundary'; | |
| export const ExampleComponent = () => { | |
| return ( | |
| <div> | |
| Component | |
| </div> | |
| ); |