Skip to content

Instantly share code, notes, and snippets.

View ketsugi's full-sized avatar

Joel Pan ketsugi

View GitHub Profile
@ketsugi
ketsugi / form.css
Last active June 1, 2016 14:46
Child element filling remaining space of parent element
.input-composite {
align-items: center;
display: inline-flex;
width: 70%;
}
.label {
display: inline-block;
width: 30%;
}
@ketsugi
ketsugi / app.js
Last active February 3, 2017 00:02
Setting page title with angular-ui-router
const app = angular.module('app', ['ui.router'])
// Set up some states
.config(($stateProvider) =>
{
$stateProvider.state('login',
{
data: { pageTitle: 'Login' },
templateUrl: 'login.partial.html',
url: 'login',
});