Credits here: FortAwesome/Font-Awesome#4167
I agree. Use Pure css, with border-radius and a fixed width and height.
For example:
.social [class*="fa fa-"] {
background-color: #333;
border-radius: 30px;
| /** | |
| * Requirements: | |
| * - jQuery (http://jquery.com/) | |
| * - DataTables (http://datatables.net/) | |
| * - BootboxJS (http://bootboxjs.com/) | |
| * --------------------------------------------------------------------------- | |
| * Credits to https://gist.github.com/flackend/9517696 | |
| * --------------------------------------------------------------------------- | |
| * This monitors all AJAX calls that have an error response. If a user's | |
| * session has expired, then the system will return a 401 status, |
| <?php | |
| namespace App\Http\Controllers; | |
| use App\User; | |
| use Illuminate\Http\Request; | |
| class PaginationController extends Controller | |
| { |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\Collection; | |
| use Illuminate\Pagination\LengthAwarePaginator; | |
| class AppServiceProvider extends ServiceProvider | |
| { | |
| public function boot() |
| exports.helloWorld = function helloWorld(req, res) { | |
| //Connect to MongoDB Atlas | |
| var MongoClient = require('mongodb').MongoClient; | |
| var uri = "mongodb://user:[email protected]:27017,cluster-shard-00-01-6chsu.mongodb.net:27017,cluster-shard-00-02-6chsu.mongodb.net:27017/test?ssl=true&replicaSet=Cluster-shard-0&authSource=admin"; | |
| MongoClient.connect(uri, function(err, db) { | |
| //check for connection errors | |
| if (err) res.status(400).send(err); | |
| //Read the data from the incoming request & add it to an object to insert | |
| var message = req.body.message; |
Or open the terminal and try this script:
flutter clean
| //_________________script js______________ | |
| async function test(){ | |
| return new Promise((res,rej)=>{ | |
| setTimeout(function(){ | |
| res('test async function') | |
| },3000) | |
| }) | |
| } | |
| //_________________content js______________ |