This file contains hidden or 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
| const BB8 = styled.div` | |
| &:before, | |
| &:after { | |
| display: block; | |
| content: ""; | |
| position: absolute; | |
| } | |
| `; |
This file contains hidden or 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
| const BigBB8 = BB8.extend` | |
| zoom: 200%; | |
| `; |
This file contains hidden or 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
| const BB8 = styled.div` | |
| animation: ${({ turn }) => turn ? | |
| `${spin} 0.8s infinite linear` : "none"}; | |
| /* or */ | |
| ${({ turn }) => turn && css` | |
| animation: ${spin} 0.8s infinite linear; | |
| `} | |
| `; |
This file contains hidden or 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
| const white = alpha => `rgba(255, 255, 255, ${alpha})`; | |
| const BB8 = styled.div` | |
| background-image: | |
| radial-gradient(circle at 58px 32px, ${white(0.9)} 2px, transparent 3px) | |
| `; |
This file contains hidden or 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
| import styled from "styled-components"; | |
| const Container = styled.div` | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| height: calc(100vh - 2 * 8px); | |
| `; |
This file contains hidden or 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
| 628408: HTTP2_SESSION | |
| localhost:8443 (DIRECT) | |
| Start Time: 2018-03-22 09:00:43.870 | |
| t=1298705 [st=0] +HTTP2_SESSION [dt=?] | |
| --> host = "localhost:8443" | |
| --> proxy = "DIRECT" | |
| t=1298705 [st=0] HTTP2_SESSION_INITIALIZED | |
| --> protocol = "h2" | |
| --> source_dependency = 628407 (SOCKET) |
This file contains hidden or 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
| <div class="main-container"> | |
| <fountain-header></fountain-header> | |
| <main class="main"> | |
| <fountain-title></fountain-title> | |
| <fountain-techs></fountain-techs> | |
| </main> | |
| <fountain-footer></fountain-footer> | |
| </div> |
This file contains hidden or 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
| module.exports = function (config) { | |
| config.set({ | |
| basePath: '../', | |
| singleRun: true, | |
| autoWatch: false, | |
| files: [ | |
| 'node_modules/angular/angular.js', | |
| 'node_modules/angular-mocks/angular-mocks.js', | |
| 'src/app/mock/utils.js', | |
| 'src/index.spec.js' |
This file contains hidden or 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
| var localStorageMock = /* ... some mock code ... */ | |
| Object.defineProperty(window, 'localStorage', { | |
| value: localStorageMock | |
| }); | |
| import './app/index.module'; | |
| import 'angular-mocks'; | |
| import './app/mock/utils'; |
This file contains hidden or 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
| /* tslint:disable:no-unused-variable */ | |
| // import { By } from '@angular/platform-browser'; | |
| // import { DebugElement } from '@angular/core'; | |
| import { async, inject } from '@angular/core/testing'; | |
| import { TestComponentBuilder, ComponentFixture } from '@angular/compiler/testing'; | |
| import { HomeComponent } from './home.component'; |