Skip to content

Instantly share code, notes, and snippets.

View JorjeRedemption's full-sized avatar
:shipit:
Yes.

George Whysall JorjeRedemption

:shipit:
Yes.
View GitHub Profile
@JorjeRedemption
JorjeRedemption / clear-floats.less
Created February 22, 2018 14:32
Clear floats after and before an item in less.
&:before, &:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata;
using System;
namespace MyApplication.Models
{
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{