microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Samples/Samples.Tab/Web/src/App.css
43lines · modecode
| 1 | body { |
| 2 | margin: 0px; |
| 3 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Apple Color Emoji", "Segoe UI Emoji", sans-serif; |
| 4 | } |
| 5 | |
| 6 | a { |
| 7 | color: white; |
| 8 | } |
| 9 | |
| 10 | h1 { |
| 11 | font-size: 3rem; |
| 12 | } |
| 13 | |
| 14 | .App { |
| 15 | color: white; |
| 16 | background-color: #282c34; |
| 17 | display: flex; |
| 18 | flex-direction: column; |
| 19 | row-gap: 1rem; |
| 20 | justify-content: start; |
| 21 | align-items: center; |
| 22 | height: 100vh; |
| 23 | overflow: hidden auto; |
| 24 | } |
| 25 | |
| 26 | .App > * { |
| 27 | max-width: calc(100% - 4rem); |
| 28 | } |
| 29 | |
| 30 | .actions { |
| 31 | display: flex; |
| 32 | flex-direction: row; |
| 33 | align-items: center; |
| 34 | justify-content: center; |
| 35 | column-gap: 1rem; |
| 36 | } |
| 37 | |
| 38 | .result { |
| 39 | color: white; |
| 40 | background-color: black; |
| 41 | padding: 0 1rem; |
| 42 | overflow: auto; |
| 43 | } |
| 44 | |